Update a Bookkeeping Account

patch/bookkeeping_accounts/{bookkeeping_account_id}

Path parameters

bookkeeping_account_idstring required

The bookkeeping account you would like to update.

Request body

namestring required

The name you choose for the account.

Example request

{
  "name": "Deprecated 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