Skip to main content
GET
/
pay_schedules
/
{pay_schedule}
Retrieve a pay schedule
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/pay_schedules/{pay_schedule} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "pay_schedule",
  "data": {
    "business_entity": {
      "id": "<id>",
      "object": "business_entity",
      "links": {
        "self": "/business_entities/<id>"
      }
    },
    "title": "Default Schedule",
    "pay_frequency": "monthly",
    "anchor_pay_date": "2026-01-31",
    "anchor_start_of_pay_period": "2026-01-01",
    "anchor_end_of_pay_period": "2026-01-31",
    "generate_payrolls_from": null,
    "day_1": -1,
    "day_2": null,
    "pay_day_movement_setting": "inherit",
    "send_empty_pay_stubs": true,
    "pay_stub_settings": {
      "show_vacation_pay_balance": false
    },
    "custom_pay_periods_per_year": null,
    "is_editable": true,
    "is_deletable": true,
    "external_ref": null,
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/pay_schedules/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

pay_schedule
string
required

Query Parameters

expand
enum<string>[]
Available options:
business_entity,
payrolls

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

data
Default · object