For developers
By Qliro
MerchantOrderAvailableShippingMethodsUrl
. When the customer changes adress or the cart updates Qliro will send a POST request to that URL giving you the possibility to update the shipping options if needed. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
{ "AvailableShippingMethods": [ { "MerchantReference": "HOME_DELIVERY", "ShippingFeeMerchantReference": "SHIPPING_FEE_REF_1", "DisplayName": "Home Deliver", "Descriptions": "\"Expected date\",\"Expected time\"", "Brand": "DHL", "PriceIncVat": 300, "PriceExVat": 200, "OriginalPrice": 0, "SupportsAccessCode": true, "SupportsDynamicSecondaryOptions": true, "SecondaryOptions": [ { "MerchantReference": "UniqueMerchantReference", "DisplayName": "Pickup location 1", "Descriptions": "\"Address\", \"Hours\"", "Coordinates": { "Lat": 59.349962, "Lng": 18.04763 }, "DeliveryDateInfo": { "DateStart": "2099-01-01", "DateEnd": "2099-01-01", "Unit": "Date" } } ], "AdditionalShippingServices": [ { "MerchantReference": "ADDITIONAL_SHIPPING_SERVICE_1", "DisplayName": "Express delivery", "Descriptions": "Faster delivery", "PriceExVat": 100, "PriceIncVat": 150, "DeliveryDate": "2099-01-01", "DeliveryDateInfo": { "DateStart": "2099-01-01", "DateEnd": "2099-01-01", "Unit": "Date" } } ], "DeliveryDate": "2099-01-01", "CategoryDisplayName": "HOME_DELIVERY", "LabelDisplayName": "Name", "DeliveryDateInfo": { "DateStart": "2099-01-01", "DateEnd": "2099-01-01", "Unit": "Date" } } ] }
MerchantOrderAvailableShippingMethodsUrl
.ShippingConfiguration
parameter in the create order call.
1 2 3 4 5 6 7 8 9 10 11 12
{ "ShippingConfiguration": { "Unifaun": { "CheckoutId": "string", "Tags": { "additionalProp1": "string", "additionalProp2": "string", "additionalProp3": "string" } } } }
Ingrid.Vouchers
) or cart attribute (key: Ingrid.CartAttributes
) in the merchantProvidedMetadata.
onShippingMethodChanged
or onShippingPriceChanged
(optional listener) to know when the customer changes shipping data. Continue to Listeners to read more.