Skip to main content
POST
/
form_types
/
{form_type}
/
validate
Validate a form
curl --request POST \
  --url https://sandbox.nmbr.co/services/payroll/form_types/{form_type}/validate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "effective_date": "2026-01-01"
}
'
{
  "data": {
    "errors": {
      "line_2_infirm_children_caregiver_amount": [
        "The Infirm Children Caregiver Amount (Line 2) must be at least 0."
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

form_type
string
required

Body

application/json
effective_date
string<date>

Response

200 - application/json

OK