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

Headers

Authorization
string
default:bearer YOUR_API_KEY
required
x-api-version
string
default:2025-09
required

The version of the API to use. The current API version is 2025-09.

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

userId
string
required
Example:

"6323d7c9122ae69742a5d0a2"

fullName
string
required
Example:

"Gregg Mojica"

username
string
required
Example:

"support@runalloy.com"

I