AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business
Properties
Name
Type
Description
value
number
Total closing balance of the account. This includes both reconciled and unreconciled bank statement lines. The closing balance will always be represented as a positive number, with it’s debit/credit s
type
string
The DEBIT or CREDIT status of the account. Cash accounts in credit have a negative balance.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StatementBalanceResponse",
"title": "StatementBalanceResponse",
"type": "object",
"properties": {
"value": {
"type": "number",
"description": "Total closing balance of the account. This includes both reconciled and unreconciled bank statement lines. The closing balance will always be represented as a positive number, with it\u2019s debit/credit status defined in the statementBalanceDebitCredit field.",
"format": "double",
"x-is-money": true
},
"type": {
"type": "string",
"description": "The DEBIT or CREDIT status of the account. Cash accounts in credit have a negative balance."
}
},
"additionalProperties": false
}