Users
Get a single User
| ⚠️ This endpoint is currently in BETA |
|---|
Returns information about a single internal User, including name, primary email address, all email addresses, photo URL, account status, and account role.
The userId path parameter is the same identifier as the User's corresponding Person ID — every internal User has a matching Person record, and they share the same numeric ID. You can use a Person ID returned from any Persons endpoint here, and vice versa.
The emailAddresses and role properties are only returned to callers with the "Manage Users" permission.
get/v2/users/{userId}
Path parameters
userIdinteger required
User ID
Response
OK
Example response
{
"id": 1,
"firstName": "Jane",
"lastName": "Doe",
"primaryEmailAddress": "jane.doe@acme.co",
"emailAddresses": [
"jane.doe@acme.co",
"janedoe@gmail.com"
],
"photoUrl": "https://assets.affinity.co/img/avatars/jane-doe.png",
"status": "active",
"role": "standard"
}