cURL
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 } }
Get user
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Contact settings for the user
Show child attributes
Whether the user should receive any emails
If true, email-related errors will be logged but not thrown. User operations will succeed even if email operations fail. Defaults to false.