Skip to main content
GET
/
overtime_rates
/
{overtime_rate}
Retrieve an overtime rate
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/overtime_rates/{overtime_rate} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "overtime_rate",
  "data": {
    "pay_rate": {
      "id": "<id>",
      "object": "pay_rate",
      "links": {
        "self": "/pay_rates/<id>"
      }
    },
    "title": "1.5x",
    "title_translated": "1.5x",
    "rate_multiplier": 1.5,
    "hourly_rate": 22.5,
    "hourly_rate_override": null,
    "business_preset": null,
    "expense_accounting_code": null,
    "liability_accounting_code": null,
    "archived_at": 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": "/overtime_rates/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

overtime_rate
string
required

Query Parameters

expand
enum<string>[]
Available options:
business_preset,
expense_accounting_code,
liability_accounting_code,
pay_rate,
tag_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 ("overtime_rate").

data
Default · object