Skip to main content
POST
/
reports
/
journal-entry
Create journal entry report
curl --request POST \
  --url https://sandbox.nmbr.co/services/payroll/reports/journal-entry \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "business_entity_id": "<id>",
  "payroll_id": "<id>"
}
'
{
  "id": "<id>",
  "object": "report",
  "data": {
    "type": "journal-entry",
    "business_entity": {
      "id": "<id>",
      "object": "business_entity",
      "links": {
        "self": "/business_entities/<id>"
      }
    },
    "pay_schedule": null,
    "payroll": {
      "id": "<id>",
      "object": "payroll",
      "links": {
        "self": "/payrolls/<id>"
      }
    },
    "filters": {
      "payroll_type": [
        "regular",
        "off_cycle",
        "historical",
        "correction"
      ],
      "payroll_status": [
        "paid"
      ],
      "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.

Body

application/json
business_entity_id
string
required
payroll_id
string
required

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