Skip to main content
POST
/
tax_properties
/
batch
/
upsert
Batch upsert tax properties
curl --request POST \
  --url https://sandbox.nmbr.co/services/payroll/tax_properties/batch/upsert \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "id": "<id>",
    "effective_to": "2026-12-31"
  },
  {
    "owner_id": "<id>",
    "type": "ca::province_of_work",
    "value": "ca_on",
    "effective_from": "2026-01-01"
  }
]
'

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