Skip to main content
GET
/
holidays
/
{holiday}
Retrieve a holiday
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/holidays/{holiday} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "holiday",
  "data": {
    "jurisdiction": "ca_on",
    "type": "statutory",
    "name": "Canada Day",
    "name_translations": {
      "en": "Canada Day",
      "fr": "Fête du Canada"
    },
    "name_translated": "Canada Day",
    "original_date": "2026-07-01",
    "observed_date": "2026-07-01",
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/holidays/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

holiday
string
required

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

data
Holiday · object