action bigredcloud_get_v1_bank_accounts_id { label: "Returns information about a single Bank Account." provider: bigredcloud method: GET path: "/v1/bankAccounts/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { 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" } oBalance: { type: "number" format: "double" } sortCode: { type: "string" } timestamp: { type: "string" format: "byte" } } } }