Skip to main content
GET
/
employees
/
{employee}
Retrieve an employee
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/employees/{employee} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "employee",
  "data": {
    "company": {
      "id": "<id>",
      "object": "company",
      "links": {
        "self": "/companies/<id>"
      }
    },
    "employee_number": "001",
    "first_name": "Marley",
    "last_name": "Prosacco",
    "middle_initial": null,
    "personal_email": "marley.prosacco@personal.test",
    "work_email": "mprosacco@work.test",
    "address_line_1": "Angelina Ridge",
    "address_line_2": null,
    "city": "Toronto",
    "province_code": "ON",
    "country_code": "CA",
    "postal_code": "M1M1M1",
    "sin": "196710156",
    "sin_last_3": "156",
    "date_of_birth": "1985-01-20",
    "warnings": {
      "object": "list",
      "data": [
        {
          "object": "warning",
          "data": {
            "namespace": "onboarding",
            "type": "bank_account_doesnt_exists"
          }
        }
      ]
    },
    "external_ref": null,
    "preferred_locale": null,
    "archived_at": null,
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/employees/<id>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

employee
string
required

Query Parameters

expand
enum<string>[]
Available options:
company,
work_assignments

Response

200 - application/json

OK

id
string
read-only

The unique identifier of the object in Nmbr.

object
string
read-only

The type of the object in Nmbr ("employee").

data
Default · object