Skip to main content
POST
/
deduction_line_items
/
batch
/
upsert
Batch upsert deduction line items
curl --request POST \
  --url https://sandbox.nmbr.co/services/payroll/deduction_line_items/batch/upsert \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "id": "<id>",
    "custom_amount": 75
  },
  {
    "pay_stub_id": "<id>",
    "deduction_type": "garnishment_order",
    "custom_amount": 150
  }
]
'

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