action api2cart_order_financial_status_list { label: "OrderFinancialStatusList" description: "Retrieve list of financial statuses" provider: api2cart method: GET path: "/order.financial_status.list.json" encoding: json output: { type: "object" properties: { result: { type: "object" properties: { order_financial_statuses: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } } } } } } return_code: { type: "integer" } return_message: { type: "string" } } } }