action api2cart_cart_config { label: "CartConfig" description: "Get list of cart configs" provider: api2cart method: GET path: "/cart.config.json" encoding: json input: { type: "object" properties: { exclude: { type: "string" } params: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { db_prefix: { type: "string" } store_name: { type: "string" } store_url: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }