Get person by ID
Returns a specific member by ID for the authenticated organization with their user information.
Path parameters
Member ID
Response
Person retrieved successfully
Example response
{
"id": "mem_abc123def456",
"organizationId": "org_abc123def456",
"userId": "usr_abc123def456",
"role": "admin",
"createdAt": "2024-01-01T00:00:00Z",
"department": "it",
"isActive": true,
"user": {
"id": "usr_abc123def456",
"name": "John Doe",
"email": "john.doe@company.com",
"emailVerified": true,
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-15T00:00:00Z"
},
"backgroundCheckRequests": [
{
"id": "bcr_abc123def456",
"status": "invited"
}
]
}Changes
Changed in 4 of the 51 revisions of this API.114
- ○
added the optional property
backgroundCheckRequeststo the response with the200statusresponse-optional-property-added
- ○
- ○
added the required property
deactivatedto the response with the200statusresponse-required-property-added
- ○
- ▲
removed the required property
user/allOf[UserResponseDto]/isPlatformAdminfrom the response with the200statusresponse-required-property-removed
- ○
added the required property
user/allOf[UserResponseDto]/roleto the response with the200statusresponse-required-property-added
- ▲
- ●
deleted the
headerrequest parameterX-Organization-Idrequest-parameter-removed
- ○
added the required property
user/allOf[UserResponseDto]/isPlatformAdminto the response with the200statusresponse-required-property-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●