action api2cart_basket_info { label: "BasketInfo" description: "Retrieve basket information." provider: api2cart method: GET path: "/basket.info.json" encoding: json input: { type: "object" properties: { exclude: { type: "string" } id: { type: "string" } params: { type: "string" } response_fields: { type: "string" } store_id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { additional_fields: { type: "object" } basket_products: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } id: { type: "string" } name: { type: "string" } options: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } id: { type: "string" } name: { type: "string" } used_in_combination: { type: "boolean" } value: { type: "string" } value_id: { type: "string" } } } } parent_id: { type: "string" } price: { type: "number" } product_id: { type: "string" } quantity: { type: "number" } sku: { type: "string" } tax: { type: "number" } variant_id: { type: "string" } weight: { type: "number" } weight_unit: { type: "string" } } } } basket_url: { type: "string" } created_at: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } format: { type: "string" } value: { type: "string" } } } currency: { type: "object" properties: { additional_fields: { type: "object" } avail: { type: "boolean" } custom_fields: { type: "object" } default: { type: "boolean" } id: { type: "string" } iso3: { type: "string" } name: { type: "string" } rate: { type: "number" } symbol_left: { type: "string" } symbol_right: { type: "string" } } } custom_fields: { type: "object" } customer: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } email: { type: "string" } first_name: { type: "string" } id: { type: "string" } last_name: { type: "string" } phone: { type: "string" } } } id: { type: "string" } modified_at: { type: "object" additionalProperties: true } } } return_code: { type: "integer" } return_message: { type: "string" } } } }