Settings: add postingaccount
postingaccounts_createAdd a custom account number to your chart of accounts for postings that standard accounts do not cover. Specify name, account number, and parent account.
Instructions
🟡 WRITE · creates data: Creates new records (receipts, transactions, postings, invoices, master data). Not idempotent: calling twice may create duplicates.
add postingaccount
Create a postingaccount.
Use to add an account number to the chart of accounts that the standard chart does not cover.
To register a bank or cash account, use accounts_create.
Not idempotent. v1 offers no delete endpoint, so a posting account created here can only be updated afterwards.
Endpoint: POST /settings/add/postingaccount
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of your new postingaccount. | |
| postingaccount_number | Yes | The postingaccount number of your new postingaccount. | |
| parent_postingaccount_number | Yes | The parent postingaccount number of your new postingaccount.This is the postingaccount from which your individually created postingaccount inherits their properties. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | No | blank | |
| success | Yes | Success boolean | |
| postingaccount_number | No | blank | |
| parent_postingaccount_number | No | blank |