Skip to main content
GET
/
v1
/
core
/
users
/
{id}
Get user
curl --request GET \
  --url https://api.example.com/v1/core/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "email": "<string>",
  "organizationId": "<string>",
  "phoneNumber": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "memberTeamId": "<string>",
  "coachTeamIds": [
    "<string>"
  ],
  "externalId": "<string>",
  "createdAt": "<string>",
  "disabled": true,
  "billable": true,
  "contactSettings": {
    "suppressEmails": true,
    "suppressEmailErrors": false
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json

Get user

id
string
required
email
string | null
required
organizationId
string
required
phoneNumber
string | null
required
firstName
string | null
required
lastName
string | null
required
memberTeamId
string | null
required
coachTeamIds
string[]
required
externalId
string | null
required
createdAt
string | null
required
disabled
boolean
required
billable
boolean
required
contactSettings
object

Contact settings for the user