action api2cart_order_status_list { label: "OrderStatusList" description: "Retrieve list of statuses" provider: api2cart method: GET path: "/order.status.list.json" encoding: json input: { type: "object" properties: { store_id: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { cart_order_statuses: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } } } } } } return_code: { type: "integer" } return_message: { type: "string" } } } }