Logotype
For developers
By Qliro
Select search filters:
0
0
Delivery Date customization
Delivery date can be shown on all levels on a shipping option:
  1. Main shipping option.
  2. Secondary shipping option.
  3. Additional shipping services.
By using DeliveryDateInfo on above options the delivery date can be presented in a variety of ways. 
 
Specific day
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "MerchantReference": "reference13.2",
  "DisplayName": "Today",
  "Descriptions": [
    "Barnhusgatan 20, Stockholm",
    "Vardagar 09-21, helger 11-21"
  ],
  "Coordinates": {
    "Latitude": 59.3303,
    "Longitude": 18.0696
  },
  "DeliveryDateInfo": {
    "DateStart": "2021-06-01T12:45:46.453Z",
    "Unit": "Date"
  }
}
 
Specific day with time
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "MerchantReference": "reference13.3",
  "DisplayName": "Today arroun 17:00",
  "Descriptions": [
    "Torsgatan 2, Stockholm"
  ],
  "Coordinates": {
    "Latitude": 59.331300000000006,
    "Longitude": 18.0706
  },
  "DeliveryDateInfo": {
    "DateStart": "2021-06-01T15:00:00.453Z",
    "Unit": "DateTime"
  }
}
 
Specific day with time span
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "MerchantReference": "reference13.4",
  "DisplayName": "Today between 17:00 and 22:00",
  "Descriptions": [
    "Klarabergsgatan 50, Stockholm",
    "Vardagar 08-19"
  ],
  "Coordinates": {
    "Latitude": 59.332300000000004,
    "Longitude": 18.0716
  },
  "DeliveryDateInfo": {
    "DateStart": "2021-06-01T15:00:00.453Z",
    "DateEnd": "2021-06-01T20:00:00.453Z",
    "Unit": "DateTime"
  }
}
 
Span of days
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "MerchantReference": "reference13.1",
  "DisplayName": "Between 1 to 3 days",
  "Descriptions": [
    "Dalagatan 9, Stockholm",
    "Alla dagar 07-23"
  ],
  "Coordinates": {
    "Latitude": 59.3293,
    "Longitude": 18.0686
  },
  "DeliveryDateInfo": {
    "DateStart": "2021-06-02T12:45:46.453Z",
    "DateEnd": "2021-06-04T12:45:46.453Z"
  }
}
 
Span of days with times
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "MerchantReference": "reference13.6",
  "DisplayName": "Between 8 and 10 days with times",
  "Descriptions": [
    "Dalagatan 9, Stockholm",
    "24/7"
  ],
  "Coordinates": {
    "Latitude": 59.334300000000006,
    "Longitude": 18.0736
  },
  "DeliveryDateInfo": {
    "DateStart": "2021-06-09T10:00:00.453Z",
    "DateEnd": "2021-06-11T12:30:00.453Z",
    "Unit": "DateTime"
  }
}
 
Latest day with time
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "MerchantReference": "reference13.8",
  "DisplayName": "Before tomorow at 9:00",
  "Descriptions": [
    "Torsgatan 2, Stockholm",
    "Alla dagar 07-23"
  ],
  "Coordinates": {
    "Latitude": 59.3363,
    "Longitude": 18.0756
  },
  "DeliveryDateInfo": {
    "DateEnd": "2021-06-02T07:00:00.453Z",
    "Unit": "DateTime"
  }
}