Skip to main content
Bookkeeping Entries

Entries are T-account entries recording debits and credits. Your compliance setup might require annotating money movements using this API. Learn more in our guide to Bookkeeping.

The Bookkeeping Entry object
{
  "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"
}
Attributes
account_id
string

The identifier for the Account the Entry belongs to.

More about Bookkeeping Accounts.
amount
integer

The Entry amount in the minor unit of its currency. For dollars, for example, this is cents.

created_at
string

When the entry set was created.

entry_set_id
string

The identifier for the Entry Set the Entry belongs to.

More about Bookkeeping Entry Sets.
id
string

The entry identifier.

type
string

A constant representing the object’s type. For this resource it will always be bookkeeping_entry.

List Bookkeeping Entries
curl \
  --url "${INCREASE_URL}/bookkeeping_entries?account_id=bookkeeping_account_e37p1f1iuocw5intf35v" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
Returns a list response :
{
  "data": [
    { /* Bookkeeping Entry object */ },
    { /* Bookkeeping Entry object */ }
    /* ... */
  ],
  "next_cursor": "v57w5d",
}
Parameters
account_id
string

The identifier for the Bookkeeping Account to filter by.

More parameters
cursor
string
limit
integer
Retrieve a Bookkeeping Entry
curl \
  --url "${INCREASE_URL}/bookkeeping_entries/bookkeeping_entry_ctjpajsj3ks2blx10375" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
Parameters
bookkeeping_entry_id
string
Required

The identifier of the Bookkeeping Entry.