GET
/
users
/
{id}
/
manager
curl --request GET \
  --url https://api.neobrain.io/{version}/users/{id}/manager \
  --header 'Authorization: Bearer <token>'
{
  "id": 0,
  "employeeId": "ABC12345",
  "managerId": 0,
  "managerEmployeeId": "ABC12345",
  "roleId": 0
}

Authorizations

Authorization
string
header
required

API token for the Authorization header parameter.

Headers

Accept-Language
string

Language identifier, using the ISO 639-1 specification. If none provided it will use the account default language. For additional info please access /v1/locales

Path Parameters

id
string
required

Resource identifier. It can be an integer or a string having the following format x-EMPLOYEE_ID, where EMPLOYEE_ID is a alpha numerical string and is related to employeeId field value.

Response

200
application/json
Success
id
integer

User internal id

Example:

0

employeeId
string

User employeeID

Example:

"ABC12345"

managerId
integer

The manager internal id of this user

Example:

0

managerEmployeeId
string

The manager employeeId of this user

Example:

"ABC12345"

roleId
integer

The role assigned. Please check /v1/roles for additional information.

Example:

0