Create a Bookkeeping Account

post/bookkeeping_accounts

Request body

account_idstring

The account, if compliance_category is commingled_cash.

compliance_category'commingled_cash' | 'customer_balance'

The account compliance category.

entity_idstring

The entity, if compliance_category is customer_balance.

namestring required

The name you choose for the account.

Example request

{
  "name": "New Account!"
}

Response

Bookkeeping Account

account_idstring nullable required

The API Account associated with this bookkeeping account.

compliance_category'commingled_cash' | 'customer_balance' nullable required

The compliance category of the account.

entity_idstring nullable required

The Entity associated with this bookkeeping account.

idstring required

The account identifier.

idempotency_keystring nullable required

The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.

namestring required

The name you choose for the account.

type'bookkeeping_account' required

A constant representing the object's type. For this resource it will always be bookkeeping_account.

Example response

{
  "account_id": null,
  "compliance_category": "customer_balance",
  "entity_id": "entity_n8y8tnk2p9339ti393yi",
  "id": "bookkeeping_account_e37p1f1iuocw5intf35v",
  "idempotency_key": null,
  "name": "John Doe Balance",
  "type": "bookkeeping_account"
}

Changes