GET
/
org
/
user
curl --request GET \
  --url https://svc.sandbox.anon.com/org/user \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "email": "<string>",
  "phoneNumber": "<string>",
  "externalUserId": "<string>",
  "createdAt": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

id
string | null

UUID of the app user

email
string | null

Email of the app user

phoneNumber
string | null

Phone number of the app user

externalUserId
string | null

External user ID of the app user

appUserPoolId
string | null

App user pool ID of the app user. Required if other filters match multiple users across different user pools.

Response

200 - application/json
id
string
required
createdAt
string
required
email
string | null
phoneNumber
string | null
externalUserId
string | null

Was this page helpful?