GET
/
users
/
{id}
curl --request GET \
  --url https://api.neobrain.io/{version}/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 0,
  "employeeId": "ABC12345",
  "firstName": "John",
  "lastName": "Doe",
  "email": "john@example.com",
  "secondaryEmail": "john2@example.com",
  "phone": "+33 6 12 34 56 78",
  "secondaryPhone": "+33 6 12 34 56 78",
  "gender": 1,
  "locale": "fr",
  "birthDay": "2007-06-23",
  "nationality": "FR",
  "address": "16 Rue de Triomphe",
  "city": "Paris",
  "zipcode": 75015,
  "country": "France",
  "status": 1,
  "isManager": 1,
  "managerId": 123,
  "managerEmployeeId": "ABC0000",
  "job": [
    {
      "id": 0,
      "externalId": "ABC",
      "title": "Java Developer"
    }
  ],
  "additionalFields": [
    {
      "externalFieldId": "external_field_code",
      "name": "Field Name",
      "value": "2007-06-23"
    }
  ]
}

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

Internal ID

Example:

0

employeeId
string
Example:

"ABC12345"

firstName
string
Example:

"John"

lastName
string
Example:

"Doe"

email
string
Example:

"john@example.com"

secondaryEmail
string
Example:

"john2@example.com"

phone
string
Example:

"+33 6 12 34 56 78"

secondaryPhone
string
Example:

"+33 6 12 34 56 78"

gender
integer
Example:

1

locale
string
Example:

"fr"

birthDay
string
Example:

"2007-06-23"

nationality
string
Example:

"FR"

address
string
Example:

"16 Rue de Triomphe"

city
string
Example:

"Paris"

zipcode
string
Example:

75015

country
string
Example:

"France"

status
boolean | null
Example:

1

isManager
boolean | null
Example:

1

managerId
integer

Manager Internal user ID

Example:

123

managerEmployeeId
string

Manager Employee ID

Example:

"ABC0000"

job
object[]
additionalFields
object[]