report_ulid), which is necessary to retrieve the completed report.
has_results is true), it can be retrieved through the Retrieve Report endpoint. The report data can be accessed as a CSV file by specifying the Accept: text/csv header.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://sandbox.nmbr.co/services/payroll/reports/liability \
--header 'Authorization: Bearer <access_token>' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
"pay_schedule_id": "<pay_schedule_id>",
"filters": {
"payroll_type":"regular",
"payroll_status":["paid"],
"pay_date_from":"2024-01-31",
"pay_date_to":"2024-12-31"
}
}'
report_ulid), which is necessary to retrieve the completed report.
{
"id": "<report_ulid>",
"object": "report",
"data": {
"type": "liability",
"business_entity": null,
"pay_schedule": {
"id": "<pay_schedule_id>",
"object": "pay_schedule",
"links": {
"self": "https://sandbox.nmbr.co/services/payroll/pay_schedules/<pay_schedule_id>"
}
},
"payroll": null,
"filters": {
"payroll_type": ["regular"],
"payroll_status": ["paid"],
"pay_date_from": "2024-01-31",
"pay_date_to": "2024-12-31"
},
"has_results": false,
"created_at": "2024-06-25T20:53:33.000000Z",
"updated_at": "2024-06-25T20:53:35.000000Z"
},
"links": {
"self": "https://sandbox.nmbr.co/services/payroll/reports/<report_ulid>"
}
}
has_results is true), it can be retrieved through the Retrieve Report endpoint. The report data can be accessed as a CSV file by specifying the Accept: text/csv header.
curl --request GET \
--url https://sandbox.nmbr.co/services/payroll/reports/<report_ulid> \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: text/csv'
