Users V2
Get User
Use this API to retrieve details for a single user in your account.
get/api/access/v2/users/{userId}
Path parameters
userIdstring uuid required
The unique identifier of the user.
Response
User retrieved successfully
Example response
{
"userId": "423e4567-e89b-12d3-a456-426614174000",
"firstName": "Ross",
"lastName": "Taylor",
"fullName": "Ross Taylor",
"email": "jane.doe@example.com",
"accessLevels": [
{
"organizationId": "423e4567-e89b-12d3-a456-426614174000",
"organizationName": "My Org",
"roleId": "423e4567-e89b-12d3-a456-426614174001",
"roleName": "Audit Manager"
}
],
"emailConfirmed": true,
"active": true,
"externalId": "ext-123456",
"expirationDateTime": "2025-01-01T12:00:00Z",
"disabledDateTime": "2024-06-15T08:30:00Z",
"createdDate": "2023-10-01T09:15:00Z",
"lastModifiedDate": "2024-02-20T14:45:00Z",
"lastLoginDate": "2024-09-10T07:05:00Z",
"disabledBy": "Michael Douglas",
"defaultOrganizationName": "My Org",
"defaultOrganizationId": "423e4567-e89b-12d3-a456-426614174111"
}