Skip to main content
POST
/
reimbursement_line_items
/
batch
/
upsert
Batch upsert reimbursement line items
curl --request POST \
  --url https://sandbox.nmbr.co/services/payroll/reimbursement_line_items/batch/upsert \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "id": "<id>",
    "custom_amount": 250
  },
  {
    "pay_stub_id": "<id>",
    "reimbursement_type": "non_taxable_reimbursement",
    "custom_amount": 200
  }
]
'

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