curl --request POST \
--url https://sandbox.nmbr.co/services/payroll/overtime_rates/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"business_entity_id": "<id>",
"work_assignments": {
"include": "all"
},
"pay_rates": {
"include": "all"
}
}
'{
"object": "list",
"data": [
{
"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>"
}
}
],
"links": {
"first": "http://localhost/overtime_rates/search?business_entity_id=<id>&work_assignments%5Binclude%5D=all&pay_rates%5Binclude%5D=all&page=1",
"last": "http://localhost/overtime_rates/search?business_entity_id=<id>&work_assignments%5Binclude%5D=all&pay_rates%5Binclude%5D=all&page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"last_page": 1,
"per_page": 15,
"total": 1,
"has_more": false
}
}Search overtime rates
Search overtime rates under the given business entity, returning the same set the equivalent bulk update/delete operation would target with this body.
curl --request POST \
--url https://sandbox.nmbr.co/services/payroll/overtime_rates/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"business_entity_id": "<id>",
"work_assignments": {
"include": "all"
},
"pay_rates": {
"include": "all"
}
}
'{
"object": "list",
"data": [
{
"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>"
}
}
],
"links": {
"first": "http://localhost/overtime_rates/search?business_entity_id=<id>&work_assignments%5Binclude%5D=all&pay_rates%5Binclude%5D=all&page=1",
"last": "http://localhost/overtime_rates/search?business_entity_id=<id>&work_assignments%5Binclude%5D=all&pay_rates%5Binclude%5D=all&page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"last_page": 1,
"per_page": 15,
"total": 1,
"has_more": false
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Hide child attributes
Hide child attributes
Response
OK
The type of the object in Nmbr ("list").
Hide child attributes
Hide child attributes
The unique identifier of the object in Nmbr.
The type of the object in Nmbr ("overtime_rate").
Hide child attributes
Hide child attributes
The translation of the title property for the request locale. Computed using the values in title and title_translations and the value of the request's Accept-Language header.
The date and time the object was archived in Nmbr.
After a PayRate is on a non-draft payroll, its Type and Rate may not be updated.
After a PayRate is on a non-draft payroll, it may not be deleted.
A reference to the object in an external system, e.g. the primary key of the object in your application's database. Nmbr doesn't use, validate, parse, or require this value to be unique - it simply stores it for your reference.
255The date and time the object was created in Nmbr.
The date and time the object was last updated in Nmbr.

