Get Employee By ID

Warning: This API has been deprecated. Please contact us to move to the latest Authentication system and transition to using GET Users.

GET /employees/{employeeId}

Retrieves a specific employee (success) or gives a reason why it's not possible (failure).

Required Permissions

NameConditions

Employees:Read

Always Required

Triggers

OrgsManagement

Parameters

Path parameters

Path parameterDescription

employeeId

Unique identifier of the employee. Employee IDs look like this: oe-orange-apple-2b17a80613 They follow this format: oe-<random-words>-<random-alphanumeric-string>

Response

Response example

If successful, the response contains the permission object:

{
    "id": "oe-orange-apple-2b17a80613",
    "username": "john@dfns.co",
    "email": "john@dfns.co",
    "fullName": "John Smith",
    "issuer": "Dfns",
    "dateOfBirth": null,
    "status": "Enabled",
    "dateCreated": "2022-11-22T20:58:29.681Z",
    "dateUpdated": "2022-11-22T20:59:07.178Z",
    "orgId": "organization-id",
    "isOrgOwner": false
}

Last updated