List Bookkeeping Entry Sets

get/bookkeeping_entry_sets

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.

transaction_idstring

Filter to the Bookkeeping Entry Set that maps to this Transaction.

idempotency_keystring

Filter records to the one with the specified idempotency_key you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.

Response

Bookkeeping Entry Set List

next_cursorstring nullable required

A pointer to a place in the list.

Example response

{
  "data": [
    {
      "created_at": "2023-02-11T02:11:59Z",
      "date": "2020-01-31T23:59:59Z",
      "entries": [
        {
          "account_id": "bookkeeping_account_e37p1f1iuocw5intf35v",
          "amount": 1750,
          "id": "bookkeeping_entry_ctjpajsj3ks2blx10375"
        },
        {
          "account_id": "bookkeeping_account_e37p1f1iuocw5intf35v",
          "amount": -1750,
          "id": "bookkeeping_entry_ctjpajsj3ks2blx10375"
        }
      ],
      "id": "bookkeeping_entry_set_n80c6wr2p8gtc6p4ingf",
      "idempotency_key": null,
      "transaction_id": null,
      "type": "bookkeeping_entry_set"
    }
  ],
  "next_cursor": "v57w5d"
}

Changes