Skip to main content
GET
/
users
/
{userId}
Retrieve a single user
curl --request GET \
  --url https://production.runalloy.com/users/{userId} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-version: <x-api-version>'
"{\n    \"userId\": \"6323d7c9122ae69742a5d0a2\",\n    \"fullName\": \"Gregg Mojica\",\n    \"username\": \"support@runalloy.com\",\n}"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-api-version
string
default:2025-09
required

API version

Path Parameters

userId
string
required

The Id of the user you want to lookup. Returned from the Create User endpoint. Note: you can also use the Embedded user's username in this field.

Response

200 - application/json

200

The response is of type any.

I