List Bookkeeping Entries

get/bookkeeping_entries

Query parameters

cursorstring

Return the page of entries after this one.

limitinteger

Limit the size of the list that is returned. The default (and maximum) is 100 objects.

account_idstring

The identifier for the Bookkeeping Account to filter by.

Response

Bookkeeping Entry List

next_cursorstring nullable required

A pointer to a place in the list.

Example response

{
  "data": [
    {
      "account_id": "bookkeeping_account_e37p1f1iuocw5intf35v",
      "amount": 1750,
      "created_at": "2020-01-31T23:59:59Z",
      "entry_set_id": "bookkeeping_entry_set_n80c6wr2p8gtc6p4ingf",
      "id": "bookkeeping_entry_ctjpajsj3ks2blx10375",
      "type": "bookkeeping_entry"
    }
  ],
  "next_cursor": "v57w5d"
}

Changes