Skip to main content
GET
/
contractors
/
{contractor}
Retrieve a contractor
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/contractors/{contractor} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "contractor",
  "data": {
    "business_name": "Contractor Co",
    "first_name": "John",
    "last_name": "Smith",
    "middle_initial": null,
    "email": "john@smith.com",
    "business_number": null,
    "sin_last_3": null,
    "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": "/contractors/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

contractor
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 ("contractor").

data
Default · object