action api2cart_order_transaction_list { label: "OrderTransactionList" description: "Retrieve list of order transaction" provider: api2cart method: GET path: "/order.transaction.list.json" encoding: json input: { type: "object" properties: { count: { type: "integer" } exclude: { type: "string" } order_ids: { type: "string" } page_cursor: { type: "string" } params: { type: "string" } response_fields: { type: "string" } store_id: { type: "string" } } required: ["order_ids"] additionalProperties: false } output: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } pagination: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } next: { type: "string" } previous: { type: "string" } } } result: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } transactions: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } amount: { type: "number" } avs_message: { type: "string" } avs_postal_resp_code: { type: "string" } avs_street_resp_code: { type: "string" } card_bin: { type: "string" } card_brand: { type: "string" } card_last_four: { type: "string" } created_time: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } format: { type: "string" } value: { type: "string" } } } currency: { type: "string" } custom_fields: { type: "object" } cvv_code: { type: "string" } cvv_message: { type: "string" } description: { type: "string" } gateway: { type: "string" } id: { type: "string" } is_test_mode: { type: "boolean" } order_id: { type: "string" } parent_id: { type: "string" } reference_number: { type: "string" } settlement_amount: { type: "number" } settlement_created_time: { type: "object" additionalProperties: true } settlement_currency: { type: "string" } status: { type: "string" } transaction_id: { type: "string" } } } } transactions_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }