action api2cart_cart_list { label: "CartList" description: "Get list of supported carts" provider: api2cart method: GET path: "/cart.list.json" encoding: json output: { type: "object" properties: { result: { type: "object" properties: { supported_carts: { type: "array" items: { type: "object" properties: { cart_id: { type: "string" } cart_name: { type: "string" } cart_versions: { type: "string" } params: { type: "array" items: { type: "string" } } } } } } } return_code: { type: "integer" } return_message: { type: "string" } } } }