action bigredcloud_book_tran_types_get { label: "Returns a list of global Book Transactions' Types. Supports OData querying protocol. \nFiltering is forbidden. \nOrdering is allowed by \"id\" field." provider: bigredcloud method: GET path: "/v1/bookTranTypes" encoding: json output: { type: "object" properties: { Count: { type: "integer" format: "int64" } Items: { type: "array" items: { type: "object" properties: { code: { type: "string" } description: { type: "string" } id: { type: "integer" format: "int64" } } } } NextPageLink: { type: "string" } } } }