Logotype
For developers
By Qliro
Select search filters:
0
0
/
/
Custom shipping
List display/Tabs grouping
List display
With this feature you can choose to have all available shipping options displayed in a list. 
Enabled by default when using integrated shipping. 
Recommended when having 6 or less avaibable shipping options.
 
Example

Tabs grouping
With this you can categorise shipping options and display them as 2 tabs (e.g. ”Home delivery” and ”Pick up location”)
To enable this option, use CategoryDisplayName under AvailableShippingMethods parameters. For more details see API Reference.
Recommended when having more than 3 shipping options available per category. Only 2 tabs are supported.
 
Example
Tabs grouping with labels
In addition to categorising shipping options you can also group them within the categories that are relevant for your customers e.g. ”Environmentally friendly”, ”Express shipping”, ”Free”. This is perfect for when you want to highlight to customers the additional value of some shipping options.
To enable this feature use LabelDisplayName under AvailableShippingMethods parameters. See API Reference for more details.  
Maximum 3 labels supported per tab.
 
Example
Pickup location
If you work with multiple shipping partners which in turn offer multiple pick-up locations you can simplify the choice for your customers and reduce their decision time by grouping the shipping options and having the customer browse them in a drop down menu.
To enable this feature use the SecondaryOptions parameters. See API Reference for more details.  
Recommended for shipping options which have multiple locations for delivery which the customer can choose from.
Pickup location on map
If you send in geographical coordinates Qliro Checkout will provide a link that enables the customer to get an overview of the closest pickup locations using google maps.
To enable feature use Coordinates under SecondaryOptions parameters. See API Reference for more details.  
Recommended for giving a visual representation to the customers of the distance to/from the selected delivery location.
 
Delivery related add-ons
With this feature you can offer your customer additional services related to the shipping of the goods they purchased for an additional fee, e.g. installation, carry inside home, express handling etc. Presented as a checkbox.
To enable this use the AdditionalShippingService parameters. See API Reference for more details.  
Recommended for when you want to offer and charge for additional services related to the order delivery.
Shipping discounts
By using this you can visualize for your customers if a shipping option has a discounted price or if they are getting a discount on shipping because of membership points etc.
To enable this feature use OriginalPrice under AvailableShippingMethods. See API Reference for more details.
Recommended for being able to visualize extra value customers are getting when choosing a delivery option, if/when relevant.
 
Example
Door access code
By flagging to Qliro that a door access code can be provided for a shipping method, a text field will be presented in proximity of the shipping method where the customer can enter up to max 50 characters.
To enable, use SupportsAccessCode under the AvailableShippingMethods parameters. See API Reference for more details.  
Recommended for home deliveries.
Delivery date
With this feature you can display the date when the shipping provider can deliver the order so that your customers get a more relevant overview of what value they get for each option.
Click here to see in what different ways this can be presented.
To enable this feature use the DeliveryDate parameter under either AvailableShippingMethods or AdditionalShippingService parameter. See API Reference for more details.
Recommended to help the customer understand the difference between options when offering for example express and regular postal services.
Shipping section description
With this option you can have a custom text displayed right under the shipping section’s main title which can inform the customers of a certain campaign or other relevant information
To enable this feature. Use ShippingAdditionalHeader under the Create Order request parameters. See API Reference for more details.  
Recommended for highlighting, e.g., ongoing campaigns resulting in discounts on delivery for purchases over certain amount.
 
Example
Shipping option labels 
With this feature you are able to highlight your shipping options choosing from a set of different icon and text based labels. This provides a great opprtunity to be able to make the shipping option extra eye catching for the customers. It also provides the possibility to make it extra clear around which categorys or delivery method each shipping option belongs to. 

One example is the importance of being as environmentally friendly as possible. Using the "eco" option label your customers will be able to be more aware of the eco-friendlier options from your shipping list.
To enable this for a shipping option use OptionLabels under AvailableShippingMethods. One shipping option can use multiple labels.

Label "Name" 
The labels that can be choosed from are:
Eco, Express, Evening, Morning, Home, Box, Pickup
Label "DisplayType"
There are 3 different variants for each label: 

Text, Icon, TextIcon. 
*For mobile-setups we will only display "icon" variant due to ensuring a good "look and feel". 

Code example
1
2
3
4
5
6
7
8
9
10
11
{
"AvailableShippingMethods": [
    {
      "MerchantReference": "HOME_DELIVERY",
      "ShippingFeeMerchantReference": "SHIPPING_FEE_REF_1",
      "DisplayName": "Home Delivery",
       "OptionLabels":
        [{ "Name": "express",
          "DisplayType": "icon"
        } ],
}
 
View example
icon corner-down-right-dark
Next up is Checkboxes