Skip to main content
GET
/
journal_entries
List journal entries
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/journal_entries \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [],
  "links": {
    "first": "/journal_entries?payroll_id=<id>&page=1",
    "last": "/journal_entries?payroll_id=<id>&page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "last_page": 1,
    "per_page": 15,
    "total": 0,
    "has_more": false
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

payroll_id
string
required
type
enum<string>
Available options:
pay_stub_recording,
payroll_payment,
payroll_recording
expand
enum<string>[]
Available options:
journal_entry_rows,
pay_stub,
payroll

Response

200 - application/json

OK

object
string
read-only

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

data
object[]