open_account
Create a ledger account by specifying an ID and normal balance type, with an optional setting to allow negative balances.
Instructions
Open a ledger account. Every account posts in the ledger currency. Accounts may not go negative unless allow_negative is set: overdraft is a policy you opt into, not an accident.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Account id, e.g. "cash" or "sales_tax_payable" | |
| type | Yes | Determines the normal balance side: asset/expense are debit-normal, the rest credit-normal | |
| allow_negative | No | Whether this account's balance may go negative (default false) |