Skip to main content
GET
/
pay_rates
/
{pay_rate}
Retrieve a pay rate
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/pay_rates/{pay_rate} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "pay_rate",
  "data": {
    "work_assignment": {
      "id": "<id>",
      "object": "work_assignment",
      "links": {
        "self": "/work_assignments/<id>"
      }
    },
    "title": "Marketing Manager",
    "title_translations": null,
    "title_translated": "Marketing Manager",
    "type": "hourly",
    "rate": 15,
    "expected_hours_per_week": 40,
    "is_editable": true,
    "is_deletable": true,
    "effective_from": "2026-01-01",
    "earliest_valid_effective_to": "2026-01-01",
    "effective_to": null,
    "business_preset": null,
    "expense_accounting_code": null,
    "liability_accounting_code": null,
    "external_ref": null,
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/pay_rates/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

pay_rate
string
required

Query Parameters

expand
enum<string>[]
Available options:
business_preset,
expense_accounting_code,
liability_accounting_code,
overtime_rates,
tag_assignment,
work_assignment

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_rate").

data
Default · object