action bigredcloud_customers_get_account_trans { label: "Returns a list of Customer's account transactions." provider: bigredcloud method: GET path: "/v1/customers/{itemId}/accountTrans" encoding: json input: { type: "object" properties: { itemId: { type: "integer" format: "int64" } } required: ["itemId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { bookTranId: { type: "integer" format: "int64" } bookTranTypeId: { type: "integer" format: "int64" } bookTransactionReference: { type: "string" } bookTypeDesc: { type: "string" } credit: { type: "number" format: "double" } debit: { type: "number" format: "double" } id: { type: "integer" format: "int64" } procDate: { type: "string" format: "date-time" } } } } }