Create shipping rates

You can compare shipping rates before you create a consignment. Although comparing shipping rates does not create or allocate a consignment, you can reuse the request body to create a consignment.

Create shipping rates request

You need the following to make a create shipping rates request.

Data Description
Carriers You cannot compare shipping rates if carriers, carrier services, and carrier costs are not configured for your Metapack shipper account.
Warehouses You cannot compare shipping rates if warehouses are not configured for your Metapack shipper account. This is because the sender of a consignment is a warehouse (shipping location).

Using the Create shipping rates operation, enter the following information:

  • Order details
  • Consignment dimensions and weight
  • Details about each parcel in the consignment
  • Optional: Either the code of a previously defined shipping rule or allocation parameters to define a new shipping rule for this consignment
Note

If you do not yet know all the details about the consignment, such as the weight of each parcel, you will need to provide estimates, such as an average parcel weight.

Example request

Copy
Copied
POST /shipping/v1/rates HTTP/1.1
Host: api.metapack.com
API-Key: Basic Base64-encoded <username>:<password>
Content-Type: application/json

{
    "consignment": {
        "measurementUnits": {
            "weight": "kg",
            "measurement": "cm",
            "volume" : "ml"
        },
        "orders": [
            {
                "orderRef": "1234"
            }
        ],
        "shipmentRef": null,
        "sender": {
            "code": "default",
            "addressLine1": "200 GRAY'S INN RD",
            "addressLine2": "METAPACK LIMITED 4TH FLOOR",
            "postCode": "WC1X 8XZ",
            "countryCode": "GBR",
            "companyName": "sender",
            "city": "London",
            "stateProvince": null,
            "timeZone": "Europe/London",
            "contact": {
                "name" : "help test",
                "email": "help@metapack.com",
                "phone": "0612345678"
            }
        },
        "recipient": {
            "addressLine1": "200 Grays Inn",
            "addressLine2": "London",
            "postCode": "WC1X 8XZ",
            "countryCode": "GBR",
            "companyName": "METAPACK LIMITED",
            "city": "London",
            "stateProvince": "",
            "timeZone": "Europe/London",
            "type": "business",
            "contact": {
               "name" : "help test",
                "email": "help@metapack.com",
                "phone": "0612345678"
            }
        },
         "supportingAgents": {
            "return": {
                "addressLine1": "200 Grays Inn",
                "addressLine2": " 4TH FLOOR",
                "city": "London",
                "postCode": "WC1 8XC",
                "countryCode": "GBR",
                "companyName": "return wh",
                "type": "business",
                "addressReference": "",
                "contact": {
                    "name": "test",
                    "email": "help@metapack.com",
                    "phone": "+23312345678"
                }
            }
        },
        "parcels": [
            {
                "parcelIndex": 1,
                "shipperRef": "1213",
                "packagingType": "BAG",
                "weight": {
                    "value": 1
                },
                "dimensions": {
                    "height": 10,
                    "width": 12,
                    "depth": 10
                },
                "value": {
                    "amount": 12,
                    "currencyCode": "GBP"
                },
                "items": [
                    {
                        "itemRef": "prod1",
                        "harmonisedCode": "1",
                        "countryOfOrigin": "GBR",
                        "fabricContent": "1",
                        "description": "prod1",
                        "itemType": "1",
                        "quantity": 1,
                        "value": {
                            "amount": 10
                        },
                        "exportReferenceNumber": null,
                        "exportLicenseNumber": null,
                        "batteryChemCode": null,
                        "weight": {
                            "value": 1
                        },
                        "dangerousGoods": {
                            "unId": "11",
                            "shippingName": "ship",
                            "productClass": "dangerous",
                            "packagingGroup": "12",
                            "measurementUnit": "12",
                            "packagingInstructions": "instruction",
                            "packagingInstructionSection": "22222",
                            "quantity": 1,
                            "packagingType": "bag",
                            "amount": 1,
                            "regulationAuthority": "ra",
                            "regulationLevelCode": "1",
                            "transportationMeans": "12",
                            "reportableQuantity": true,
                            "radioActive": false,
                            "subRiskClass": "22",
                            "technicalName": "222",
                            "additionalInfo": "22222",
                            "overPack": "1111"
                        }
                    }
                ]
            }
        ],
        "type": "delivery",
        "tags": [
            "cust1",
            "cust2",
            "cust3",
            "cust4",
            "cust5",
            "cust6",
            "cust7",
            "cust8",
            "cust9",
            "cust10"
        ]
    },
    "shippingRules": {
        "collectionDays": {
            "monday": true,
            "tuesday": true,
            "wednesday": true,
            "thursday": true,
            "friday": true,
            "saturday": true,
            "sunday": true
        },
        "deliveryDays": {
            "monday": true,
            "tuesday": true,
            "wednesday": true,
            "thursday": true,
            "friday": true,
            "saturday": true,
            "sunday": true
        },
        "carrierServices": [
            "RMFIRSTSTL"
        ]
    }
}

Create shipping rates response

200 (OK)

A successful response returns all carrier services that can deliver the consignment in order of shipping cost, with the cheapest first.

Example response

Copy
Copied
[
    {
        "cutoffDateTime": "2021-08-03T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-03T17:30:00.000Z",
            "to": "2021-08-03T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-06T08:00:00.000Z",
            "to": "2021-08-16T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-04T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-04T17:30:00.000Z",
            "to": "2021-08-04T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-09T08:00:00.000Z",
            "to": "2021-08-17T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-05T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-05T17:30:00.000Z",
            "to": "2021-08-05T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-09T08:00:00.000Z",
            "to": "2021-08-17T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-06T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-06T17:30:00.000Z",
            "to": "2021-08-06T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-09T08:00:00.000Z",
            "to": "2021-08-17T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-09T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-09T17:30:00.000Z",
            "to": "2021-08-09T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-12T08:00:00.000Z",
            "to": "2021-08-20T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-10T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-10T17:30:00.000Z",
            "to": "2021-08-10T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-13T08:00:00.000Z",
            "to": "2021-08-23T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-11T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-11T17:30:00.000Z",
            "to": "2021-08-11T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-16T08:00:00.000Z",
            "to": "2021-08-24T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-12T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-12T17:30:00.000Z",
            "to": "2021-08-12T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-16T08:00:00.000Z",
            "to": "2021-08-24T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-13T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-13T17:30:00.000Z",
            "to": "2021-08-13T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-16T08:00:00.000Z",
            "to": "2021-08-24T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-16T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-16T17:30:00.000Z",
            "to": "2021-08-16T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-19T08:00:00.000Z",
            "to": "2021-08-27T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-17T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-17T17:30:00.000Z",
            "to": "2021-08-17T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-20T08:00:00.000Z",
            "to": "2021-08-30T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-18T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-18T17:30:00.000Z",
            "to": "2021-08-18T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-23T08:00:00.000Z",
            "to": "2021-08-31T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-19T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-19T17:30:00.000Z",
            "to": "2021-08-19T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-23T08:00:00.000Z",
            "to": "2021-08-31T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-20T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-20T17:30:00.000Z",
            "to": "2021-08-20T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-23T08:00:00.000Z",
            "to": "2021-08-31T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPLUS",
                "name": "Packet Plus",
                "carrier": {
                    "name": "Packet Plus",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-03T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-03T17:30:00.000Z",
            "to": "2021-08-03T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-05T08:00:00.000Z",
            "to": "2021-08-12T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-04T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-04T17:30:00.000Z",
            "to": "2021-08-04T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-06T08:00:00.000Z",
            "to": "2021-08-13T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-05T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-05T17:30:00.000Z",
            "to": "2021-08-05T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-09T08:00:00.000Z",
            "to": "2021-08-16T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-06T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-06T17:30:00.000Z",
            "to": "2021-08-06T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-09T08:00:00.000Z",
            "to": "2021-08-16T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-09T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-09T17:30:00.000Z",
            "to": "2021-08-09T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-11T08:00:00.000Z",
            "to": "2021-08-18T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-10T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-10T17:30:00.000Z",
            "to": "2021-08-10T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-12T08:00:00.000Z",
            "to": "2021-08-19T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-11T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-11T17:30:00.000Z",
            "to": "2021-08-11T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-13T08:00:00.000Z",
            "to": "2021-08-20T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-12T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-12T17:30:00.000Z",
            "to": "2021-08-12T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-16T08:00:00.000Z",
            "to": "2021-08-23T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-13T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-13T17:30:00.000Z",
            "to": "2021-08-13T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-16T08:00:00.000Z",
            "to": "2021-08-23T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-16T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-16T17:30:00.000Z",
            "to": "2021-08-16T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-18T08:00:00.000Z",
            "to": "2021-08-25T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-17T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-17T17:30:00.000Z",
            "to": "2021-08-17T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-19T08:00:00.000Z",
            "to": "2021-08-26T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-18T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-18T17:30:00.000Z",
            "to": "2021-08-18T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-20T08:00:00.000Z",
            "to": "2021-08-27T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-19T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-19T17:30:00.000Z",
            "to": "2021-08-19T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-23T08:00:00.000Z",
            "to": "2021-08-30T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-20T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-20T17:30:00.000Z",
            "to": "2021-08-20T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-23T08:00:00.000Z",
            "to": "2021-08-30T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETPRIORITY",
                "name": "Packet Priority",
                "carrier": {
                    "name": "Packet Priority",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-03T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-03T17:30:00.000Z",
            "to": "2021-08-03T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-09T08:00:00.000Z",
            "to": "2021-08-20T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-04T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-04T17:30:00.000Z",
            "to": "2021-08-04T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-10T08:00:00.000Z",
            "to": "2021-08-23T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-05T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-05T17:30:00.000Z",
            "to": "2021-08-05T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-11T08:00:00.000Z",
            "to": "2021-08-24T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-06T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-06T17:30:00.000Z",
            "to": "2021-08-06T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-12T08:00:00.000Z",
            "to": "2021-08-25T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-09T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-09T17:30:00.000Z",
            "to": "2021-08-09T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-16T08:00:00.000Z",
            "to": "2021-08-27T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-10T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-10T17:30:00.000Z",
            "to": "2021-08-10T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-16T08:00:00.000Z",
            "to": "2021-08-27T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-11T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-11T17:30:00.000Z",
            "to": "2021-08-11T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-17T08:00:00.000Z",
            "to": "2021-08-30T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-12T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-12T17:30:00.000Z",
            "to": "2021-08-12T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-18T08:00:00.000Z",
            "to": "2021-08-31T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-13T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-13T17:30:00.000Z",
            "to": "2021-08-13T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-19T08:00:00.000Z",
            "to": "2021-09-01T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-16T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-16T17:30:00.000Z",
            "to": "2021-08-16T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-23T08:00:00.000Z",
            "to": "2021-09-03T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-17T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-17T17:30:00.000Z",
            "to": "2021-08-17T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-23T08:00:00.000Z",
            "to": "2021-09-03T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-18T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-18T17:30:00.000Z",
            "to": "2021-08-18T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-24T08:00:00.000Z",
            "to": "2021-09-06T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-19T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-19T17:30:00.000Z",
            "to": "2021-08-19T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-25T08:00:00.000Z",
            "to": "2021-09-07T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-20T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-20T17:30:00.000Z",
            "to": "2021-08-20T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-26T08:00:00.000Z",
            "to": "2021-09-08T17:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "DP05PACKETSTANDARD",
                "name": "Packet Standard",
                "carrier": {
                    "name": "Packet Standard",
                    "code": "DP05"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-03T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-03T17:30:00.000Z",
            "to": "2021-08-03T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-04T07:00:00.000Z",
            "to": "2021-08-04T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-04T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-04T17:30:00.000Z",
            "to": "2021-08-04T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-05T07:00:00.000Z",
            "to": "2021-08-05T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-05T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-05T17:30:00.000Z",
            "to": "2021-08-05T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-06T07:00:00.000Z",
            "to": "2021-08-06T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-06T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-06T17:30:00.000Z",
            "to": "2021-08-06T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-07T07:00:00.000Z",
            "to": "2021-08-07T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-09T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-09T17:30:00.000Z",
            "to": "2021-08-09T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-10T07:00:00.000Z",
            "to": "2021-08-10T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-10T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-10T17:30:00.000Z",
            "to": "2021-08-10T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-11T07:00:00.000Z",
            "to": "2021-08-11T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-11T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-11T17:30:00.000Z",
            "to": "2021-08-11T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-12T07:00:00.000Z",
            "to": "2021-08-12T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-12T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-12T17:30:00.000Z",
            "to": "2021-08-12T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-13T07:00:00.000Z",
            "to": "2021-08-13T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-13T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-13T17:30:00.000Z",
            "to": "2021-08-13T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-14T07:00:00.000Z",
            "to": "2021-08-14T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-16T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-16T17:30:00.000Z",
            "to": "2021-08-16T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-17T07:00:00.000Z",
            "to": "2021-08-17T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-17T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-17T17:30:00.000Z",
            "to": "2021-08-17T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-18T07:00:00.000Z",
            "to": "2021-08-18T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-18T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-18T17:30:00.000Z",
            "to": "2021-08-18T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-19T07:00:00.000Z",
            "to": "2021-08-19T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-19T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-19T17:30:00.000Z",
            "to": "2021-08-19T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-20T07:00:00.000Z",
            "to": "2021-08-20T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    },
    {
        "cutoffDateTime": "2021-08-20T17:00:00.000Z",
        "collectionWindow": {
            "from": "2021-08-20T17:30:00.000Z",
            "to": "2021-08-20T18:30:59.999Z"
        },
        "deliveryWindow": {
            "from": "2021-08-21T07:00:00.000Z",
            "to": "2021-08-21T16:00:59.999Z"
        },
        "service": {
            "carrierService": {
                "code": "RMFIRSTSTL",
                "name": "1st Class Packet",
                "carrier": {
                    "name": "1st Class Packet",
                    "code": "ROYALMAIL"
                }
            }
        },
        "shippingCosts": {
            "charge": {
                "amount": 0,
                "currencyCode": "string"
            },
            "cost": {
                "amount": 1,
                "currencyCode": "string"
            }
        }
    }
]

Related tasks