Skip to main content
POST
/
reports
/
workers-compensation
Create WCB report
curl --request POST \
  --url https://sandbox.nmbr.co/services/payroll/reports/workers-compensation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "business_entity_id": "<id>",
  "pay_schedule_id": "<id>",
  "filters": {
    "year": 2026,
    "province_of_work": "ON"
  }
}
'
{
  "id": "<id>",
  "object": "report",
  "data": {
    "type": "workers-compensation",
    "business_entity": {
      "id": "<id>",
      "object": "business_entity",
      "links": {
        "self": "/business_entities/<id>"
      }
    },
    "pay_schedule": {
      "id": "<id>",
      "object": "pay_schedule",
      "links": {
        "self": "/pay_schedules/<id>"
      }
    },
    "payroll": null,
    "filters": {
      "payroll_type": null,
      "payroll_status": null,
      "pay_date_from": null,
      "pay_date_to": null,
      "year": 2026
    },
    "has_results": false,
    "format": null,
    "sheet": null,
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/reports/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
business_entity_id
string
required
pay_schedule_id
string

Must be present when business_entity_id and payroll_id is either empty or not set.

filters
object

Must be present when filters.province_of_work is either empty or not set.

Response

201 - application/json

Created

id
string
read-only

The unique identifier of the object in Nmbr.

object
string
read-only

The type of the object in Nmbr ("report").

data
Report · object