v1

latestOpenAPI 3.0.32026-07-24148824715.6 KB
Users

Get details about a user

Returns details for a given user.

get/v2/users/{user_identifier}

Path parameters

user_identifierstring uuid required

The identifier of the user that you want to retrieve.

Response

OK

activeboolean required

If a user is active or deactivated.

client_identifierstring uuid required

The unique identifier of the client.

created_atstring date-time required

Date and time the user was created.

created_bystring uuid required

The unique identifier of who created the user.

deactivated_atstring date-time

Date and time the user was deactivated.

emailstring required

Email address of the user.

enforce_mfa_afterstring date-time

Date and time of when MFA will be enforced for the user.

identifierstring uuid required

The unique identifier of the user.

namestring required

Full name of the user.

updated_atstring date-time required

Date and time the user was last updated.

updated_bystring uuid required

The unique identifier of who last updated the user.

user_type'AGENT' | 'HUMAN' | 'MACHINE_CREDENTIAL' required

Specifies the type of the entity.

Example response

{
  "active": true,
  "client_identifier": "00000000-0000-0000-0000-000000000000",
  "email": "example@mail.com",
  "identifier": "00000000-0000-0000-0000-000000000000",
  "name": "John Doe",
  "user_type": "HUMAN"
}