Skip to main content
POST
/
overtime_rates
/
batch
/
upsert
Batch upsert overtime rates
curl --request POST \
  --url https://sandbox.nmbr.co/services/payroll/overtime_rates/batch/upsert \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "id": "<id>",
    "rate_multiplier": 2
  },
  {
    "pay_rate_id": "<id>",
    "rate_multiplier": 1.5
  }
]
'

Authorizations

Authorization
string
header
required

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

Body

application/json
Required array length: 1 - 100 elements

Response

202

Accepted