Shop Shipping Configuration
Represents a shop shipping configuration
List of custom shipping fields for this shipping zone and shipping method
Minimal amount for free shipping
The code of the shipping type
The label of the shipping type
The code of the shipping zone
The label of the shipping zone
{ "additionalFields": [ { "__typename": "BooleanAdditionalFieldValue" } ], "freeAmount": 40, "typeCode": "Example String", "typeLabel": "Example String", "zoneCode": "Example String", "zoneLabel": "Example String" }
Return Policy
Represents a shop return policy.
Automatically accept return requests when done during the return window
Available rejection reasons
Available return methods
Available return reasons
Whether return feature is supported for the shop
Determine who is responsible to handle returns
Return address
Return policy
Return window in days
{ "autoAccept": true, "availableRejectionReasons": [ "Example String" ], "availableReturnMethods": [ "Example String" ], "availableReturnReasons": [ "Example String" ], "enabled": true, "handler": "Example String", "returnAddress": { "__typename": "ReturnAddress" }, "policy": "Example String", "window": 40 }
Shopping Cart Order
Channel code supplied when calling the API, or null if no channel code was supplied
Shop currency
Order lead time to ship
List of the offers that compose the order
A summary of the promotions applied to the order
Shipping type selected for the shop and used to calculate the shipping price for each offers
Estimated shipping date, that includes business closing days and cut-off configured on the platform. Add the earliest and latest delivery times to calculate the estimated delivery date to customers
List of shipping types compatible with all the offers composing the order
Information about the shop
{ "channelCode": "Example String", "currency": "Example Custom Scalar", "leadTimeToShip": 40, "offers": [ { "__typename": "ShoppingCartLine" } ], "promotions": { "__typename": "ShoppingCartPromotion" }, "selectedShippingType": { "__typename": "SelectedShippingType" }, "shippingDeadline": "Example Custom Scalar", "shippingTypes": [ { "__typename": "ShoppingCartAppliedShippingType" } ], "shop": { "__typename": "ShoppingCartOrderShop" } }
Selected Shipping Type
Shipping type code
Shipping type Cutoff time
Expected order delivery time
Shipping type label
Custom Shipping associated to the zone and the type
Estimated shipping date, that includes business closing days and cut-off configured on the platform. Add the earliest and latest delivery times to calculate the estimated delivery date to customers
{ "code": "Example String", "cutOffTime": "Example String", "deliveryTime": { "__typename": "DeliveryDateTimeInformation" }, "label": "Example String", "shippingAdditionalFields": [ { "__typename": "BooleanAdditionalFieldValue" } ], "shippingDeadline": "Example Custom Scalar" }
Shopping Cart Applied Shipping Type
{ "code": "Example String", "cutOffTime": "Example String", "deliveryTime": { "__typename": "DeliveryDateTimeInformation" }, "label": "Example String", "shippingAdditionalFields": [ { "__typename": "BooleanAdditionalFieldValue" } ], "totalShippingPrice": 40 }
Shopping Cart Line
The allowed shipping types for this offer
Fulfillment information of the offer
Shipping price of the order line if the order is composed only of the offer (shipping price * 1 + additional shipping price * (quantity - 1))
Total price of the order line if the order is composed only of the offer (price + shipping price of the order line)
Quantity of offers requested in the line
Price of the order line (unit price of the offer * quantity) - promotions
Quantity of offers returned for the line
Shipping price of the order line
Total price of the order line (line_price + line_shipping_price)
Discount of the offer
List of promotions
Unit price of the offer
Additional shipping price of the offer
Shipping price of the offer
Taxes to be applied on the shipping price
Taxes to be applied on the product price
Details offer information
{ "allowedShippingTypes": [ { "__typename": "ShoppingCartShippingType" } ], "fulfillment": { "__typename": "OfferFulfillment" }, "lineOnlyShippingPrice": 40, "lineOnlyTotalPrice": 40, "lineOriginalQuantity": 40, "linePrice": 40, "lineQuantity": 40, "lineShippingPrice": 40, "lineTotalPrice": 40, "offerDiscount": { "__typename": "OfferDiscount" }, "promotions": [ { "__typename": "AppliedPromotion" } ], "unitPrice": 40, "shippingPriceAdditionalUnit": 40, "shippingPriceUnit": 40, "shippingTaxes": [ { "__typename": "ShoppingCartOfferTaxAmount" } ], "taxes": [ { "__typename": "ShoppingCartOfferTaxAmount" } ], "offer": { "__typename": "Offer" } }