action api2cart_account_cart_list { label: "AccountCartList" description: "Get list of carts." provider: api2cart method: GET path: "/account.cart.list.json" encoding: json input: { type: "object" properties: { exclude: { type: "string" } params: { type: "string" } request_from_date: { type: "string" } request_to_date: { type: "string" } store_key: { type: "string" } store_url: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { carts: { type: "array" items: { type: "object" properties: { cart_id: { type: "string" } id: { type: "string" } store_key: { type: "string" } total_calls: { type: "string" } url: { type: "string" } } } } carts_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }