Xero · Schema

BankStatementAccountingResponse

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
bankAccountId string Xero Identifier of bank account
bankAccountName string Name of bank account
bankAccountCurrencyCode string Currency code of the bank account
statements array List of bank statements and linked accounting data for the requested period
View JSON Schema on GitHub

JSON Schema

xero-bankstatementaccountingresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BankStatementAccountingResponse",
  "title": "BankStatementAccountingResponse",
  "type": "object",
  "properties": {
    "bankAccountId": {
      "type": "string",
      "description": "Xero Identifier of bank account",
      "format": "uuid"
    },
    "bankAccountName": {
      "type": "string",
      "description": "Name of bank account"
    },
    "bankAccountCurrencyCode": {
      "type": "string",
      "description": "Currency code of the bank account"
    },
    "statements": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StatementResponse"
      },
      "description": "List of bank statements and linked accounting data for the requested period"
    }
  },
  "additionalProperties": false
}