action bigredcloud_bank_accounts_get { label: "Returns a list of company's Bank Account. Supports OData querying protocol. \nFiltering is forbidden. \nOrdering is allowed by \"id\" and \"acCode\" fields." provider: bigredcloud method: GET path: "/v1/bankAccounts" encoding: json output: { type: "object" properties: { Count: { type: "integer" format: "int64" } Items: { type: "array" items: { type: "object" properties: { acCode: { type: "string" } accountName: { type: "string" } accountNumber: { type: "string" } address: { type: "array" items: { type: "string" } } bankFeedSource: { type: "integer" format: "int32" } businessIdentifierCodes: { type: "string" } categoryId: { type: "integer" format: "int64" } creditorScheme: { type: "string" } details: { type: "string" } id: { type: "integer" format: "int64" } internationalBankAccountNumber: { type: "string" } isDefaultBank: { type: "boolean" } lastChq: { type: "string" } nominalAcCode: { type: "string" } sortCode: { type: "string" } timestamp: { type: "string" format: "byte" } } } } NextPageLink: { type: "string" } } } }