Skip to main content
GET
/
reports
/
{report}
Retrieve a report
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/reports/{report} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "report",
  "data": {
    "type": "liability",
    "business_entity": null,
    "pay_schedule": null,
    "payroll": {
      "id": "<id>",
      "object": "payroll",
      "links": {
        "self": "/payrolls/<id>"
      }
    },
    "filters": {
      "payroll_type": null,
      "payroll_status": null,
      "pay_date_from": null,
      "pay_date_to": null,
      "year": null
    },
    "has_results": true,
    "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.

Path Parameters

report
string
required

Query Parameters

sheet
string

Specify the report sheet you want to retrieve when requesting the CSV format. When sheet was supplied at creation, that value takes precedence and this query param is ignored.

Response

200 - application/json

OK

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