Chilkat Online Tools

SQL Server / DHL Express APIs (MyDHL API) / Retrieve Rates for Multi-piece Shipments

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    EXEC sp_OASetProperty @http, 'BasicAuth', 1
    EXEC sp_OASetProperty @http, 'Login', '<Basic Auth Username>'
    EXEC sp_OASetProperty @http, 'Password', '<Basic Auth Password>'

    -- Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    -- The following JSON is sent in the request body.

    -- {
    --   "customerDetails": {
    --     "shipperDetails": {
    --       "postalCode": "14800",
    --       "cityName": "Prague",
    --       "countryCode": "CZ",
    --       "provinceCode": "CZ",
    --       "addressLine1": "addres1",
    --       "addressLine2": "addres2",
    --       "addressLine3": "addres3",
    --       "countyName": "Central Bohemia"
    --     },
    --     "receiverDetails": {
    --       "postalCode": "14800",
    --       "cityName": "Prague",
    --       "countryCode": "CZ",
    --       "provinceCode": "CZ",
    --       "addressLine1": "addres1",
    --       "addressLine2": "addres2",
    --       "addressLine3": "addres3",
    --       "countyName": "Central Bohemia"
    --     }
    --   },
    --   "plannedShippingDateAndTime": "2020-03-24T13:00:00GMT+00:00",
    --   "unitOfMeasurement": "metric",
    --   "isCustomsDeclarable": false,
    --   "packages": [
    --     {
    --       "weight": 10.5,
    --       "dimensions": {
    --         "length": 25,
    --         "width": 35,
    --         "height": 15
    --       },
    --       "typeCode": "3BX"
    --     }
    --   ],
    --   "accounts": [
    --     {
    --       "typeCode": "shipper",
    --       "number": "123456789"
    --     },
    --     {
    --       "typeCode": "shipper",
    --       "number": "123456789"
    --     }
    --   ],
    --   "productCode": "P",
    --   "localProductCode": "P",
    --   "valueAddedServices": [
    --     {
    --       "serviceCode": "II",
    --       "localServiceCode": "II",
    --       "value": 100,
    --       "currency": "GBP",
    --       "method": "cash"
    --     },
    --     {
    --       "serviceCode": "II",
    --       "localServiceCode": "II",
    --       "value": 100,
    --       "currency": "GBP",
    --       "method": "cash"
    --     }
    --   ],
    --   "productsAndServices": [
    --     {
    --       "productCode": "P",
    --       "localProductCode": "P",
    --       "valueAddedServices": [
    --         {
    --           "serviceCode": "II",
    --           "localServiceCode": "II",
    --           "value": 100,
    --           "currency": "GBP",
    --           "method": "cash"
    --         },
    --         {
    --           "serviceCode": "II",
    --           "localServiceCode": "II",
    --           "value": 100,
    --           "currency": "GBP",
    --           "method": "cash"
    --         }
    --       ]
    --     },
    --     {
    --       "productCode": "P",
    --       "localProductCode": "P",
    --       "valueAddedServices": [
    --         {
    --           "serviceCode": "II",
    --           "localServiceCode": "II",
    --           "value": 100,
    --           "currency": "GBP",
    --           "method": "cash"
    --         },
    --         {
    --           "serviceCode": "II",
    --           "localServiceCode": "II",
    --           "value": 100,
    --           "currency": "GBP",
    --           "method": "cash"
    --         }
    --       ]
    --     }
    --   ],
    --   "payerCountryCode": "CZ",
    --   "monetaryAmount": [
    --     {
    --       "typeCode": "declaredValue",
    --       "value": 100,
    --       "currency": "CZK"
    --     },
    --     {
    --       "typeCode": "declaredValue",
    --       "value": 100,
    --       "currency": "CZK"
    --     }
    --   ],
    --   "requestAllValueAddedServices": false,
    --   "estimatedDeliveryDate": {
    --     "isRequested": false,
    --     "typeCode": "QDDC"
    --   },
    --   "getAdditionalInformation": [
    --     {
    --       "isRequested": true,
    --       "typeCode": "allValueAddedServices"
    --     },
    --     {
    --       "isRequested": true,
    --       "typeCode": "allValueAddedServices"
    --     }
    --   ],
    --   "returnStandardProductsOnly": false,
    --   "nextBusinessDay": false,
    --   "productTypeCode": "all"
    -- }

    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.shipperDetails.postalCode', '14800'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.shipperDetails.cityName', 'Prague'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.shipperDetails.countryCode', 'CZ'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.shipperDetails.provinceCode', 'CZ'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.shipperDetails.addressLine1', 'addres1'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.shipperDetails.addressLine2', 'addres2'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.shipperDetails.addressLine3', 'addres3'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.shipperDetails.countyName', 'Central Bohemia'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.receiverDetails.postalCode', '14800'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.receiverDetails.cityName', 'Prague'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.receiverDetails.countryCode', 'CZ'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.receiverDetails.provinceCode', 'CZ'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.receiverDetails.addressLine1', 'addres1'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.receiverDetails.addressLine2', 'addres2'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.receiverDetails.addressLine3', 'addres3'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'customerDetails.receiverDetails.countyName', 'Central Bohemia'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'plannedShippingDateAndTime', '2020-03-24T13:00:00GMT+00:00'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'unitOfMeasurement', 'metric'
    EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'isCustomsDeclarable', 0
    EXEC sp_OAMethod @json, 'UpdateNumber', @success OUT, 'packages[0].weight', '10.5'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'packages[0].dimensions.length', 25
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'packages[0].dimensions.width', 35
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'packages[0].dimensions.height', 15
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'packages[0].typeCode', '3BX'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'accounts[0].typeCode', 'shipper'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'accounts[0].number', '123456789'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'accounts[1].typeCode', 'shipper'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'accounts[1].number', '123456789'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productCode', 'P'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'localProductCode', 'P'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'valueAddedServices[0].serviceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'valueAddedServices[0].localServiceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'valueAddedServices[0].value', 100
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'valueAddedServices[0].currency', 'GBP'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'valueAddedServices[0].method', 'cash'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'valueAddedServices[1].serviceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'valueAddedServices[1].localServiceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'valueAddedServices[1].value', 100
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'valueAddedServices[1].currency', 'GBP'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'valueAddedServices[1].method', 'cash'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].productCode', 'P'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].localProductCode', 'P'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].valueAddedServices[0].serviceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].valueAddedServices[0].localServiceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'productsAndServices[0].valueAddedServices[0].value', 100
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].valueAddedServices[0].currency', 'GBP'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].valueAddedServices[0].method', 'cash'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].valueAddedServices[1].serviceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].valueAddedServices[1].localServiceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'productsAndServices[0].valueAddedServices[1].value', 100
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].valueAddedServices[1].currency', 'GBP'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[0].valueAddedServices[1].method', 'cash'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].productCode', 'P'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].localProductCode', 'P'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].valueAddedServices[0].serviceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].valueAddedServices[0].localServiceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'productsAndServices[1].valueAddedServices[0].value', 100
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].valueAddedServices[0].currency', 'GBP'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].valueAddedServices[0].method', 'cash'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].valueAddedServices[1].serviceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].valueAddedServices[1].localServiceCode', 'II'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'productsAndServices[1].valueAddedServices[1].value', 100
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].valueAddedServices[1].currency', 'GBP'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productsAndServices[1].valueAddedServices[1].method', 'cash'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'payerCountryCode', 'CZ'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'monetaryAmount[0].typeCode', 'declaredValue'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'monetaryAmount[0].value', 100
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'monetaryAmount[0].currency', 'CZK'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'monetaryAmount[1].typeCode', 'declaredValue'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'monetaryAmount[1].value', 100
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'monetaryAmount[1].currency', 'CZK'
    EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'requestAllValueAddedServices', 0
    EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'estimatedDeliveryDate.isRequested', 0
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'estimatedDeliveryDate.typeCode', 'QDDC'
    EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'getAdditionalInformation[0].isRequested', 1
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'getAdditionalInformation[0].typeCode', 'allValueAddedServices'
    EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'getAdditionalInformation[1].isRequested', 1
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'getAdditionalInformation[1].typeCode', 'allValueAddedServices'
    EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'returnStandardProductsOnly', 0
    EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'nextBusinessDay', 0
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'productTypeCode', 'all'

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Webstore-Platform-Name', ''
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Shipping-System-Platform-Name', ''
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Message-Reference', 'd0e7832e-5c98-11ea-bc55-0242ac13'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Plugin-Version', ''
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Plugin-Name', ''
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Shipping-System-Platform-Version', ''
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept', 'application/json'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Message-Reference-Date', 'Wed, 21 Oct 2015 07:28:00 GMT'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Webstore-Platform-Version', ''

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://api-mock.dhl.com/mydhlapi/rates?strictValidation=false', 'application/json', @json
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        RETURN
      END

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody

    DECLARE @jResp int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @jResp OUT

    EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
    EXEC sp_OASetProperty @jResp, 'EmitCompact', 0


    PRINT 'Response Body:'
    EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
    PRINT @sTmp0

    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT

    PRINT 'Response Status Code = ' + @respStatusCode
    IF @respStatusCode >= 400
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @resp

        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        EXEC @hr = sp_OADestroy @sbResponseBody
        EXEC @hr = sp_OADestroy @jResp
        RETURN
      END
    EXEC @hr = sp_OADestroy @resp


    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @json
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jResp


END
GO

Curl Command

curl -X POST
	-u '<Basic Auth Username>:<Basic Auth Password>'
	-H "Message-Reference: d0e7832e-5c98-11ea-bc55-0242ac13"
	-H "Message-Reference-Date: Wed, 21 Oct 2015 07:28:00 GMT"
	-H "Plugin-Name:  "
	-H "Plugin-Version:  "
	-H "Shipping-System-Platform-Name:  "
	-H "Shipping-System-Platform-Version:  "
	-H "Webstore-Platform-Name:  "
	-H "Webstore-Platform-Version:  "
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "customerDetails": {
    "shipperDetails": {
      "postalCode": "14800",
      "cityName": "Prague",
      "countryCode": "CZ",
      "provinceCode": "CZ",
      "addressLine1": "addres1",
      "addressLine2": "addres2",
      "addressLine3": "addres3",
      "countyName": "Central Bohemia"
    },
    "receiverDetails": {
      "postalCode": "14800",
      "cityName": "Prague",
      "countryCode": "CZ",
      "provinceCode": "CZ",
      "addressLine1": "addres1",
      "addressLine2": "addres2",
      "addressLine3": "addres3",
      "countyName": "Central Bohemia"
    }
  },
  "plannedShippingDateAndTime": "2020-03-24T13:00:00GMT+00:00",
  "unitOfMeasurement": "metric",
  "isCustomsDeclarable": false,
  "packages": [
    {
      "weight": 10.5,
      "dimensions": {
        "length": 25,
        "width": 35,
        "height": 15
      },
      "typeCode": "3BX"
    }
  ],
  "accounts": [
    {
      "typeCode": "shipper",
      "number": "123456789"
    },
    {
      "typeCode": "shipper",
      "number": "123456789"
    }
  ],
  "productCode": "P",
  "localProductCode": "P",
  "valueAddedServices": [
    {
      "serviceCode": "II",
      "localServiceCode": "II",
      "value": 100,
      "currency": "GBP",
      "method": "cash"
    },
    {
      "serviceCode": "II",
      "localServiceCode": "II",
      "value": 100,
      "currency": "GBP",
      "method": "cash"
    }
  ],
  "productsAndServices": [
    {
      "productCode": "P",
      "localProductCode": "P",
      "valueAddedServices": [
        {
          "serviceCode": "II",
          "localServiceCode": "II",
          "value": 100,
          "currency": "GBP",
          "method": "cash"
        },
        {
          "serviceCode": "II",
          "localServiceCode": "II",
          "value": 100,
          "currency": "GBP",
          "method": "cash"
        }
      ]
    },
    {
      "productCode": "P",
      "localProductCode": "P",
      "valueAddedServices": [
        {
          "serviceCode": "II",
          "localServiceCode": "II",
          "value": 100,
          "currency": "GBP",
          "method": "cash"
        },
        {
          "serviceCode": "II",
          "localServiceCode": "II",
          "value": 100,
          "currency": "GBP",
          "method": "cash"
        }
      ]
    }
  ],
  "payerCountryCode": "CZ",
  "monetaryAmount": [
    {
      "typeCode": "declaredValue",
      "value": 100,
      "currency": "CZK"
    },
    {
      "typeCode": "declaredValue",
      "value": 100,
      "currency": "CZK"
    }
  ],
  "requestAllValueAddedServices": false,
  "estimatedDeliveryDate": {
    "isRequested": false,
    "typeCode": "QDDC"
  },
  "getAdditionalInformation": [
    {
      "isRequested": true,
      "typeCode": "allValueAddedServices"
    },
    {
      "isRequested": true,
      "typeCode": "allValueAddedServices"
    }
  ],
  "returnStandardProductsOnly": false,
  "nextBusinessDay": false,
  "productTypeCode": "all"
}'
https://api-mock.dhl.com/mydhlapi/rates?strictValidation=false

Postman Collection Item JSON

{
  "name": "Retrieve Rates for Multi-piece Shipments",
  "request": {
    "method": "POST",
    "header": [
      {
        "description": "Please provide message reference\n",
        "key": "Message-Reference",
        "value": "d0e7832e-5c98-11ea-bc55-0242ac13"
      },
      {
        "description": "Optional reference date in the  HTTP-date format https://tools.ietf.org/html/rfc7231#section-7.1.1.2",
        "key": "Message-Reference-Date",
        "value": "Wed, 21 Oct 2015 07:28:00 GMT"
      },
      {
        "description": "Please provide name of the plugin (applicable to 3PV only)\n",
        "key": "Plugin-Name",
        "value": " "
      },
      {
        "description": "Please provide version of the plugin (applicable to 3PV only)\n",
        "key": "Plugin-Version",
        "value": " "
      },
      {
        "description": "Please provide name of the shipping platform(applicable to 3PV only)\n",
        "key": "Shipping-System-Platform-Name",
        "value": " "
      },
      {
        "description": "Please provide version of the shipping platform (applicable to 3PV only)\n",
        "key": "Shipping-System-Platform-Version",
        "value": " "
      },
      {
        "description": "Please provide name of the webstore platform (applicable to 3PV only)\n",
        "key": "Webstore-Platform-Name",
        "value": " "
      },
      {
        "description": "Please provide version of the webstore platform (applicable to 3PV only)\n",
        "key": "Webstore-Platform-Version",
        "value": " "
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"customerDetails\": {\n    \"shipperDetails\": {\n      \"postalCode\": \"14800\",\n      \"cityName\": \"Prague\",\n      \"countryCode\": \"CZ\",\n      \"provinceCode\": \"CZ\",\n      \"addressLine1\": \"addres1\",\n      \"addressLine2\": \"addres2\",\n      \"addressLine3\": \"addres3\",\n      \"countyName\": \"Central Bohemia\"\n    },\n    \"receiverDetails\": {\n      \"postalCode\": \"14800\",\n      \"cityName\": \"Prague\",\n      \"countryCode\": \"CZ\",\n      \"provinceCode\": \"CZ\",\n      \"addressLine1\": \"addres1\",\n      \"addressLine2\": \"addres2\",\n      \"addressLine3\": \"addres3\",\n      \"countyName\": \"Central Bohemia\"\n    }\n  },\n  \"plannedShippingDateAndTime\": \"2020-03-24T13:00:00GMT+00:00\",\n  \"unitOfMeasurement\": \"metric\",\n  \"isCustomsDeclarable\": false,\n  \"packages\": [\n    {\n      \"weight\": 10.5,\n      \"dimensions\": {\n        \"length\": 25,\n        \"width\": 35,\n        \"height\": 15\n      },\n      \"typeCode\": \"3BX\"\n    }\n  ],\n  \"accounts\": [\n    {\n      \"typeCode\": \"shipper\",\n      \"number\": \"123456789\"\n    },\n    {\n      \"typeCode\": \"shipper\",\n      \"number\": \"123456789\"\n    }\n  ],\n  \"productCode\": \"P\",\n  \"localProductCode\": \"P\",\n  \"valueAddedServices\": [\n    {\n      \"serviceCode\": \"II\",\n      \"localServiceCode\": \"II\",\n      \"value\": 100,\n      \"currency\": \"GBP\",\n      \"method\": \"cash\"\n    },\n    {\n      \"serviceCode\": \"II\",\n      \"localServiceCode\": \"II\",\n      \"value\": 100,\n      \"currency\": \"GBP\",\n      \"method\": \"cash\"\n    }\n  ],\n  \"productsAndServices\": [\n    {\n      \"productCode\": \"P\",\n      \"localProductCode\": \"P\",\n      \"valueAddedServices\": [\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        },\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        }\n      ]\n    },\n    {\n      \"productCode\": \"P\",\n      \"localProductCode\": \"P\",\n      \"valueAddedServices\": [\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        },\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        }\n      ]\n    }\n  ],\n  \"payerCountryCode\": \"CZ\",\n  \"monetaryAmount\": [\n    {\n      \"typeCode\": \"declaredValue\",\n      \"value\": 100,\n      \"currency\": \"CZK\"\n    },\n    {\n      \"typeCode\": \"declaredValue\",\n      \"value\": 100,\n      \"currency\": \"CZK\"\n    }\n  ],\n  \"requestAllValueAddedServices\": false,\n  \"estimatedDeliveryDate\": {\n    \"isRequested\": false,\n    \"typeCode\": \"QDDC\"\n  },\n  \"getAdditionalInformation\": [\n    {\n      \"isRequested\": true,\n      \"typeCode\": \"allValueAddedServices\"\n    },\n    {\n      \"isRequested\": true,\n      \"typeCode\": \"allValueAddedServices\"\n    }\n  ],\n  \"returnStandardProductsOnly\": false,\n  \"nextBusinessDay\": false,\n  \"productTypeCode\": \"all\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/rates?strictValidation=false",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "rates"
      ],
      "query": [
        {
          "key": "strictValidation",
          "value": "false",
          "description": "If set to true, indicate strict DCT validation of address details, and validation of product and service(s) combination provided in request."
        }
      ]
    },
    "description": "The Rate request will return DHL's product capabilities and prices (where applicable) based on the input data. Using the shipper and receiver address as well as the dimension and weights of the pieces belonging to a shipment, this operation returns the available products including the shipping price (where applicable)\n"
  },
  "response": [
    {
      "name": "Rates found",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          },
          {
            "description": "Please provide message reference\n",
            "key": "Message-Reference",
            "value": "d0e7832e-5c98-11ea-bc55-0242ac13"
          },
          {
            "description": "Optional reference date in the  HTTP-date format https://tools.ietf.org/html/rfc7231#section-7.1.1.2",
            "key": "Message-Reference-Date",
            "value": "Wed, 21 Oct 2015 07:28:00 GMT"
          },
          {
            "description": "Please provide name of the plugin (applicable to 3PV only)\n",
            "key": "Plugin-Name",
            "value": " "
          },
          {
            "description": "Please provide version of the plugin (applicable to 3PV only)\n",
            "key": "Plugin-Version",
            "value": " "
          },
          {
            "description": "Please provide name of the shipping platform(applicable to 3PV only)\n",
            "key": "Shipping-System-Platform-Name",
            "value": " "
          },
          {
            "description": "Please provide version of the shipping platform (applicable to 3PV only)\n",
            "key": "Shipping-System-Platform-Version",
            "value": " "
          },
          {
            "description": "Please provide name of the webstore platform (applicable to 3PV only)\n",
            "key": "Webstore-Platform-Name",
            "value": " "
          },
          {
            "description": "Please provide version of the webstore platform (applicable to 3PV only)\n",
            "key": "Webstore-Platform-Version",
            "value": " "
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customerDetails\": {\n    \"shipperDetails\": {\n      \"postalCode\": \"14800\",\n      \"cityName\": \"Prague\",\n      \"countryCode\": \"CZ\",\n      \"provinceCode\": \"CZ\",\n      \"addressLine1\": \"addres1\",\n      \"addressLine2\": \"addres2\",\n      \"addressLine3\": \"addres3\",\n      \"countyName\": \"Central Bohemia\"\n    },\n    \"receiverDetails\": {\n      \"postalCode\": \"14800\",\n      \"cityName\": \"Prague\",\n      \"countryCode\": \"CZ\",\n      \"provinceCode\": \"CZ\",\n      \"addressLine1\": \"addres1\",\n      \"addressLine2\": \"addres2\",\n      \"addressLine3\": \"addres3\",\n      \"countyName\": \"Central Bohemia\"\n    }\n  },\n  \"plannedShippingDateAndTime\": \"2020-03-24T13:00:00GMT+00:00\",\n  \"unitOfMeasurement\": \"metric\",\n  \"isCustomsDeclarable\": false,\n  \"packages\": [\n    {\n      \"weight\": 10.5,\n      \"dimensions\": {\n        \"length\": 25,\n        \"width\": 35,\n        \"height\": 15\n      },\n      \"typeCode\": \"3BX\"\n    }\n  ],\n  \"accounts\": [\n    {\n      \"typeCode\": \"shipper\",\n      \"number\": \"123456789\"\n    },\n    {\n      \"typeCode\": \"shipper\",\n      \"number\": \"123456789\"\n    }\n  ],\n  \"productCode\": \"P\",\n  \"localProductCode\": \"P\",\n  \"valueAddedServices\": [\n    {\n      \"serviceCode\": \"II\",\n      \"localServiceCode\": \"II\",\n      \"value\": 100,\n      \"currency\": \"GBP\",\n      \"method\": \"cash\"\n    },\n    {\n      \"serviceCode\": \"II\",\n      \"localServiceCode\": \"II\",\n      \"value\": 100,\n      \"currency\": \"GBP\",\n      \"method\": \"cash\"\n    }\n  ],\n  \"productsAndServices\": [\n    {\n      \"productCode\": \"P\",\n      \"localProductCode\": \"P\",\n      \"valueAddedServices\": [\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        },\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        }\n      ]\n    },\n    {\n      \"productCode\": \"P\",\n      \"localProductCode\": \"P\",\n      \"valueAddedServices\": [\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        },\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        }\n      ]\n    }\n  ],\n  \"payerCountryCode\": \"CZ\",\n  \"monetaryAmount\": [\n    {\n      \"typeCode\": \"declaredValue\",\n      \"value\": 100,\n      \"currency\": \"CZK\"\n    },\n    {\n      \"typeCode\": \"declaredValue\",\n      \"value\": 100,\n      \"currency\": \"CZK\"\n    }\n  ],\n  \"requestAllValueAddedServices\": false,\n  \"estimatedDeliveryDate\": {\n    \"isRequested\": false,\n    \"typeCode\": \"QDDC\"\n  },\n  \"getAdditionalInformation\": [\n    {\n      \"isRequested\": false,\n      \"typeCode\": \"allValueAddedServicesAndRuleGroups\"\n    },\n    {\n      \"isRequested\": false,\n      \"typeCode\": \"allValueAddedServices\"\n    }\n  ],\n  \"returnStandardProductsOnly\": false,\n  \"nextBusinessDay\": false,\n  \"productTypeCode\": \"all\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/rates?strictValidation=false",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rates"
          ],
          "query": [
            {
              "key": "strictValidation",
              "value": "false"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"products\": [\n    {\n      \"weight\": {\n        \"volumetric\": 0,\n        \"provided\": 1.5,\n        \"unitOfMeasurement\": \"metric\"\n      },\n      \"totalPrice\": [\n        {\n          \"price\": 141.51,\n          \"currencyType\": \"BILLC\",\n          \"priceCurrency\": \"GBP\"\n        },\n        {\n          \"price\": 141.51,\n          \"currencyType\": \"BILLC\",\n          \"priceCurrency\": \"GBP\"\n        }\n      ],\n      \"productName\": \"EXPRESS DOMESTIC\",\n      \"productCode\": \"N\",\n      \"localProductCode\": \"N\",\n      \"localProductCountryCode\": \"CZ\",\n      \"networkTypeCode\": \"TD\",\n      \"isCustomerAgreement\": false,\n      \"totalPriceBreakdown\": [\n        {\n          \"currencyType\": \"BILLC\",\n          \"priceCurrency\": \"GBP\",\n          \"priceBreakdown\": [\n            {\n              \"typeCode\": \"SPRQT\",\n              \"price\": 114.92\n            },\n            {\n              \"typeCode\": \"SPRQT\",\n              \"price\": 114.92\n            }\n          ]\n        },\n        {\n          \"currencyType\": \"BILLC\",\n          \"priceCurrency\": \"GBP\",\n          \"priceBreakdown\": [\n            {\n              \"typeCode\": \"SPRQT\",\n              \"price\": 114.92\n            },\n            {\n              \"typeCode\": \"SPRQT\",\n              \"price\": 114.92\n            }\n          ]\n        }\n      ],\n      \"detailedPriceBreakdown\": [\n        {\n          \"priceCurrency\": \"GBP\",\n          \"currencyType\": \"BILLC\",\n          \"breakdown\": [\n            {\n              \"name\": \"12:00 PREMIUM\",\n              \"serviceCode\": \"YK\",\n              \"localServiceCode\": \"YK\",\n              \"typeCode\": \"dolore in in \",\n              \"serviceTypeCode\": \"SCH\",\n              \"price\": 5,\n              \"priceCurrency\": \"GBP\",\n              \"isCustomerAgreement\": false,\n              \"isMarketedService\": false,\n              \"isBillingServiceIndicator\": false,\n              \"priceBreakdown\": [\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ],\n              \"tariffRateFormula\": \"((0.3464 % COST) MAX (528.33))\"\n            },\n            {\n              \"name\": \"12:00 PREMIUM\",\n              \"serviceCode\": \"YK\",\n              \"localServiceCode\": \"YK\",\n              \"typeCode\": \"sunt deserunt Ut\",\n              \"serviceTypeCode\": \"SCH\",\n              \"price\": 5,\n              \"priceCurrency\": \"GBP\",\n              \"isCustomerAgreement\": false,\n              \"isMarketedService\": false,\n              \"isBillingServiceIndicator\": false,\n              \"priceBreakdown\": [\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ],\n              \"tariffRateFormula\": \"((0.3464 % COST) MAX (528.33))\"\n            }\n          ]\n        },\n        {\n          \"priceCurrency\": \"GBP\",\n          \"currencyType\": \"BILLC\",\n          \"breakdown\": [\n            {\n              \"name\": \"12:00 PREMIUM\",\n              \"serviceCode\": \"YK\",\n              \"localServiceCode\": \"YK\",\n              \"typeCode\": \"id nisi pariatur consequat\",\n              \"serviceTypeCode\": \"SCH\",\n              \"price\": 5,\n              \"priceCurrency\": \"GBP\",\n              \"isCustomerAgreement\": false,\n              \"isMarketedService\": false,\n              \"isBillingServiceIndicator\": false,\n              \"priceBreakdown\": [\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ],\n              \"tariffRateFormula\": \"((0.3464 % COST) MAX (528.33))\"\n            },\n            {\n              \"name\": \"12:00 PREMIUM\",\n              \"serviceCode\": \"YK\",\n              \"localServiceCode\": \"YK\",\n              \"typeCode\": \"qui Lorem pariatur incididunt\",\n              \"serviceTypeCode\": \"SCH\",\n              \"price\": 5,\n              \"priceCurrency\": \"GBP\",\n              \"isCustomerAgreement\": false,\n              \"isMarketedService\": false,\n              \"isBillingServiceIndicator\": false,\n              \"priceBreakdown\": [\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ],\n              \"tariffRateFormula\": \"((0.3464 % COST) MAX (528.33))\"\n            }\n          ]\n        }\n      ],\n      \"serviceCodeMutuallyExclusiveGroups\": [\n        {\n          \"serviceCodeRuleName\": \"Exclusive Billing Services\",\n          \"description\": \"Mutually exclusive Billing Services - shipment can contain just one of following\",\n          \"serviceCodes\": [\n            {\n              \"serviceCode\": \"PZ\"\n            },\n            {\n              \"serviceCode\": \"PZ\"\n            }\n          ]\n        },\n        {\n          \"serviceCodeRuleName\": \"Exclusive Billing Services\",\n          \"description\": \"Mutually exclusive Billing Services - shipment can contain just one of following\",\n          \"serviceCodes\": [\n            {\n              \"serviceCode\": \"PZ\"\n            },\n            {\n              \"serviceCode\": \"PZ\"\n            }\n          ]\n        }\n      ],\n      \"serviceCodeDependencyRuleGroups\": [\n        {\n          \"dependentServiceCode\": \"PZ\",\n          \"dependencyRuleGroup\": [\n            {\n              \"dependencyRuleName\": \"Labelfree and PLT rule\",\n              \"dependencyDescription\": \"Labelfree requires Paperless Trade (PLT) only if PLT is allowed for product globaly\",\n              \"dependencyCondition\": \"Must provide the requiredServiceCode if it is allowed for the productCode\",\n              \"requiredServiceCodes\": [\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ]\n            },\n            {\n              \"dependencyRuleName\": \"Labelfree and PLT rule\",\n              \"dependencyDescription\": \"Labelfree requires Paperless Trade (PLT) only if PLT is allowed for product globaly\",\n              \"dependencyCondition\": \"Must provide the requiredServiceCode if it is allowed for the productCode\",\n              \"requiredServiceCodes\": [\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"dependentServiceCode\": \"PZ\",\n          \"dependencyRuleGroup\": [\n            {\n              \"dependencyRuleName\": \"Labelfree and PLT rule\",\n              \"dependencyDescription\": \"Labelfree requires Paperless Trade (PLT) only if PLT is allowed for product globaly\",\n              \"dependencyCondition\": \"Must provide the requiredServiceCode if it is allowed for the productCode\",\n              \"requiredServiceCodes\": [\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ]\n            },\n            {\n              \"dependencyRuleName\": \"Labelfree and PLT rule\",\n              \"dependencyDescription\": \"Labelfree requires Paperless Trade (PLT) only if PLT is allowed for product globaly\",\n              \"dependencyCondition\": \"Must provide the requiredServiceCode if it is allowed for the productCode\",\n              \"requiredServiceCodes\": [\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ]\n            }\n          ]\n        }\n      ],\n      \"pickupCapabilities\": {\n        \"nextBusinessDay\": false,\n        \"localCutoffDateAndTime\": \"2019-09-18T15:00:00\",\n        \"GMTCutoffTime\": \"16:00:00\",\n        \"pickupEarliest\": \"09:30:00\",\n        \"pickupLatest\": \"16:00:00\",\n        \"originServiceAreaCode\": \"ELA\",\n        \"originFacilityAreaCode\": \"HHR\",\n        \"pickupAdditionalDays\": 0,\n        \"pickupDayOfWeek\": 3\n      },\n      \"deliveryCapabilities\": {\n        \"deliveryTypeCode\": \"QDDC\",\n        \"estimatedDeliveryDateAndTime\": \"2019-09-20T12:00:00\",\n        \"destinationServiceAreaCode\": \"PRG\",\n        \"destinationFacilityAreaCode\": \"PR3\",\n        \"deliveryAdditionalDays\": 0,\n        \"deliveryDayOfWeek\": 5,\n        \"totalTransitDays\": 2\n      },\n      \"items\": {},\n      \"pricingDate\": \"2020-02-25\"\n    },\n    {\n      \"weight\": {\n        \"volumetric\": 0,\n        \"provided\": 1.5,\n        \"unitOfMeasurement\": \"metric\"\n      },\n      \"totalPrice\": [\n        {\n          \"price\": 141.51,\n          \"currencyType\": \"BILLC\",\n          \"priceCurrency\": \"GBP\"\n        },\n        {\n          \"price\": 141.51,\n          \"currencyType\": \"BILLC\",\n          \"priceCurrency\": \"GBP\"\n        }\n      ],\n      \"productName\": \"EXPRESS DOMESTIC\",\n      \"productCode\": \"N\",\n      \"localProductCode\": \"N\",\n      \"localProductCountryCode\": \"CZ\",\n      \"networkTypeCode\": \"TD\",\n      \"isCustomerAgreement\": false,\n      \"totalPriceBreakdown\": [\n        {\n          \"currencyType\": \"BILLC\",\n          \"priceCurrency\": \"GBP\",\n          \"priceBreakdown\": [\n            {\n              \"typeCode\": \"SPRQT\",\n              \"price\": 114.92\n            },\n            {\n              \"typeCode\": \"SPRQT\",\n              \"price\": 114.92\n            }\n          ]\n        },\n        {\n          \"currencyType\": \"BILLC\",\n          \"priceCurrency\": \"GBP\",\n          \"priceBreakdown\": [\n            {\n              \"typeCode\": \"SPRQT\",\n              \"price\": 114.92\n            },\n            {\n              \"typeCode\": \"SPRQT\",\n              \"price\": 114.92\n            }\n          ]\n        }\n      ],\n      \"detailedPriceBreakdown\": [\n        {\n          \"priceCurrency\": \"GBP\",\n          \"currencyType\": \"BILLC\",\n          \"breakdown\": [\n            {\n              \"name\": \"12:00 PREMIUM\",\n              \"serviceCode\": \"YK\",\n              \"localServiceCode\": \"YK\",\n              \"typeCode\": \"aliquip voluptate magna\",\n              \"serviceTypeCode\": \"SCH\",\n              \"price\": 5,\n              \"priceCurrency\": \"GBP\",\n              \"isCustomerAgreement\": false,\n              \"isMarketedService\": false,\n              \"isBillingServiceIndicator\": false,\n              \"priceBreakdown\": [\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ],\n              \"tariffRateFormula\": \"((0.3464 % COST) MAX (528.33))\"\n            },\n            {\n              \"name\": \"12:00 PREMIUM\",\n              \"serviceCode\": \"YK\",\n              \"localServiceCode\": \"YK\",\n              \"typeCode\": \"do ullamco ut sed\",\n              \"serviceTypeCode\": \"SCH\",\n              \"price\": 5,\n              \"priceCurrency\": \"GBP\",\n              \"isCustomerAgreement\": false,\n              \"isMarketedService\": false,\n              \"isBillingServiceIndicator\": false,\n              \"priceBreakdown\": [\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ],\n              \"tariffRateFormula\": \"((0.3464 % COST) MAX (528.33))\"\n            }\n          ]\n        },\n        {\n          \"priceCurrency\": \"GBP\",\n          \"currencyType\": \"BILLC\",\n          \"breakdown\": [\n            {\n              \"name\": \"12:00 PREMIUM\",\n              \"serviceCode\": \"YK\",\n              \"localServiceCode\": \"YK\",\n              \"typeCode\": \"voluptate mollit anim\",\n              \"serviceTypeCode\": \"SCH\",\n              \"price\": 5,\n              \"priceCurrency\": \"GBP\",\n              \"isCustomerAgreement\": false,\n              \"isMarketedService\": false,\n              \"isBillingServiceIndicator\": false,\n              \"priceBreakdown\": [\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ],\n              \"tariffRateFormula\": \"((0.3464 % COST) MAX (528.33))\"\n            },\n            {\n              \"name\": \"12:00 PREMIUM\",\n              \"serviceCode\": \"YK\",\n              \"localServiceCode\": \"YK\",\n              \"typeCode\": \"est consectetur proident adipisicing\",\n              \"serviceTypeCode\": \"SCH\",\n              \"price\": 5,\n              \"priceCurrency\": \"GBP\",\n              \"isCustomerAgreement\": false,\n              \"isMarketedService\": false,\n              \"isBillingServiceIndicator\": false,\n              \"priceBreakdown\": [\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"priceType\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"typeCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"price\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"rate\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  },\n                  \"basePrice\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ],\n              \"tariffRateFormula\": \"((0.3464 % COST) MAX (528.33))\"\n            }\n          ]\n        }\n      ],\n      \"serviceCodeMutuallyExclusiveGroups\": [\n        {\n          \"serviceCodeRuleName\": \"Exclusive Billing Services\",\n          \"description\": \"Mutually exclusive Billing Services - shipment can contain just one of following\",\n          \"serviceCodes\": [\n            {\n              \"serviceCode\": \"PZ\"\n            },\n            {\n              \"serviceCode\": \"PZ\"\n            }\n          ]\n        },\n        {\n          \"serviceCodeRuleName\": \"Exclusive Billing Services\",\n          \"description\": \"Mutually exclusive Billing Services - shipment can contain just one of following\",\n          \"serviceCodes\": [\n            {\n              \"serviceCode\": \"PZ\"\n            },\n            {\n              \"serviceCode\": \"PZ\"\n            }\n          ]\n        }\n      ],\n      \"serviceCodeDependencyRuleGroups\": [\n        {\n          \"dependentServiceCode\": \"PZ\",\n          \"dependencyRuleGroup\": [\n            {\n              \"dependencyRuleName\": \"Labelfree and PLT rule\",\n              \"dependencyDescription\": \"Labelfree requires Paperless Trade (PLT) only if PLT is allowed for product globaly\",\n              \"dependencyCondition\": \"Must provide the requiredServiceCode if it is allowed for the productCode\",\n              \"requiredServiceCodes\": [\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ]\n            },\n            {\n              \"dependencyRuleName\": \"Labelfree and PLT rule\",\n              \"dependencyDescription\": \"Labelfree requires Paperless Trade (PLT) only if PLT is allowed for product globaly\",\n              \"dependencyCondition\": \"Must provide the requiredServiceCode if it is allowed for the productCode\",\n              \"requiredServiceCodes\": [\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"dependentServiceCode\": \"PZ\",\n          \"dependencyRuleGroup\": [\n            {\n              \"dependencyRuleName\": \"Labelfree and PLT rule\",\n              \"dependencyDescription\": \"Labelfree requires Paperless Trade (PLT) only if PLT is allowed for product globaly\",\n              \"dependencyCondition\": \"Must provide the requiredServiceCode if it is allowed for the productCode\",\n              \"requiredServiceCodes\": [\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ]\n            },\n            {\n              \"dependencyRuleName\": \"Labelfree and PLT rule\",\n              \"dependencyDescription\": \"Labelfree requires Paperless Trade (PLT) only if PLT is allowed for product globaly\",\n              \"dependencyCondition\": \"Must provide the requiredServiceCode if it is allowed for the productCode\",\n              \"requiredServiceCodes\": [\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                },\n                {\n                  \"serviceCode\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                  }\n                }\n              ]\n            }\n          ]\n        }\n      ],\n      \"pickupCapabilities\": {\n        \"nextBusinessDay\": false,\n        \"localCutoffDateAndTime\": \"2019-09-18T15:00:00\",\n        \"GMTCutoffTime\": \"16:00:00\",\n        \"pickupEarliest\": \"09:30:00\",\n        \"pickupLatest\": \"16:00:00\",\n        \"originServiceAreaCode\": \"ELA\",\n        \"originFacilityAreaCode\": \"HHR\",\n        \"pickupAdditionalDays\": 0,\n        \"pickupDayOfWeek\": 3\n      },\n      \"deliveryCapabilities\": {\n        \"deliveryTypeCode\": \"QDDC\",\n        \"estimatedDeliveryDateAndTime\": \"2019-09-20T12:00:00\",\n        \"destinationServiceAreaCode\": \"PRG\",\n        \"destinationFacilityAreaCode\": \"PR3\",\n        \"deliveryAdditionalDays\": 0,\n        \"deliveryDayOfWeek\": 5,\n        \"totalTransitDays\": 2\n      },\n      \"items\": {},\n      \"pricingDate\": \"2020-02-25\"\n    }\n  ],\n  \"exchangeRates\": [\n    {\n      \"currentExchangeRate\": 1.188411,\n      \"currency\": \"GBP\",\n      \"baseCurrency\": \"EUR\"\n    },\n    {\n      \"currentExchangeRate\": 1.188411,\n      \"currency\": \"GBP\",\n      \"baseCurrency\": \"EUR\"\n    }\n  ],\n  \"warnings\": [\n    \"Price can't be calculated\",\n    \"Price can't be calculated\"\n  ]\n}"
    },
    {
      "name": "Wrong input parameters",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          },
          {
            "description": "Please provide message reference\n",
            "key": "Message-Reference",
            "value": "d0e7832e-5c98-11ea-bc55-0242ac13"
          },
          {
            "description": "Optional reference date in the  HTTP-date format https://tools.ietf.org/html/rfc7231#section-7.1.1.2",
            "key": "Message-Reference-Date",
            "value": "Wed, 21 Oct 2015 07:28:00 GMT"
          },
          {
            "description": "Please provide name of the plugin (applicable to 3PV only)\n",
            "key": "Plugin-Name",
            "value": " "
          },
          {
            "description": "Please provide version of the plugin (applicable to 3PV only)\n",
            "key": "Plugin-Version",
            "value": " "
          },
          {
            "description": "Please provide name of the shipping platform(applicable to 3PV only)\n",
            "key": "Shipping-System-Platform-Name",
            "value": " "
          },
          {
            "description": "Please provide version of the shipping platform (applicable to 3PV only)\n",
            "key": "Shipping-System-Platform-Version",
            "value": " "
          },
          {
            "description": "Please provide name of the webstore platform (applicable to 3PV only)\n",
            "key": "Webstore-Platform-Name",
            "value": " "
          },
          {
            "description": "Please provide version of the webstore platform (applicable to 3PV only)\n",
            "key": "Webstore-Platform-Version",
            "value": " "
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customerDetails\": {\n    \"shipperDetails\": {\n      \"postalCode\": \"14800\",\n      \"cityName\": \"Prague\",\n      \"countryCode\": \"CZ\",\n      \"provinceCode\": \"CZ\",\n      \"addressLine1\": \"addres1\",\n      \"addressLine2\": \"addres2\",\n      \"addressLine3\": \"addres3\",\n      \"countyName\": \"Central Bohemia\"\n    },\n    \"receiverDetails\": {\n      \"postalCode\": \"14800\",\n      \"cityName\": \"Prague\",\n      \"countryCode\": \"CZ\",\n      \"provinceCode\": \"CZ\",\n      \"addressLine1\": \"addres1\",\n      \"addressLine2\": \"addres2\",\n      \"addressLine3\": \"addres3\",\n      \"countyName\": \"Central Bohemia\"\n    }\n  },\n  \"plannedShippingDateAndTime\": \"2020-03-24T13:00:00GMT+00:00\",\n  \"unitOfMeasurement\": \"metric\",\n  \"isCustomsDeclarable\": false,\n  \"packages\": [\n    {\n      \"weight\": 10.5,\n      \"dimensions\": {\n        \"length\": 25,\n        \"width\": 35,\n        \"height\": 15\n      },\n      \"typeCode\": \"3BX\"\n    }\n  ],\n  \"accounts\": [\n    {\n      \"typeCode\": \"shipper\",\n      \"number\": \"123456789\"\n    },\n    {\n      \"typeCode\": \"shipper\",\n      \"number\": \"123456789\"\n    }\n  ],\n  \"productCode\": \"P\",\n  \"localProductCode\": \"P\",\n  \"valueAddedServices\": [\n    {\n      \"serviceCode\": \"II\",\n      \"localServiceCode\": \"II\",\n      \"value\": 100,\n      \"currency\": \"GBP\",\n      \"method\": \"cash\"\n    },\n    {\n      \"serviceCode\": \"II\",\n      \"localServiceCode\": \"II\",\n      \"value\": 100,\n      \"currency\": \"GBP\",\n      \"method\": \"cash\"\n    }\n  ],\n  \"productsAndServices\": [\n    {\n      \"productCode\": \"P\",\n      \"localProductCode\": \"P\",\n      \"valueAddedServices\": [\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        },\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        }\n      ]\n    },\n    {\n      \"productCode\": \"P\",\n      \"localProductCode\": \"P\",\n      \"valueAddedServices\": [\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        },\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        }\n      ]\n    }\n  ],\n  \"payerCountryCode\": \"CZ\",\n  \"monetaryAmount\": [\n    {\n      \"typeCode\": \"declaredValue\",\n      \"value\": 100,\n      \"currency\": \"CZK\"\n    },\n    {\n      \"typeCode\": \"declaredValue\",\n      \"value\": 100,\n      \"currency\": \"CZK\"\n    }\n  ],\n  \"requestAllValueAddedServices\": false,\n  \"estimatedDeliveryDate\": {\n    \"isRequested\": false,\n    \"typeCode\": \"QDDC\"\n  },\n  \"getAdditionalInformation\": [\n    {\n      \"isRequested\": false,\n      \"typeCode\": \"allValueAddedServicesAndRuleGroups\"\n    },\n    {\n      \"isRequested\": false,\n      \"typeCode\": \"allValueAddedServices\"\n    }\n  ],\n  \"returnStandardProductsOnly\": false,\n  \"nextBusinessDay\": false,\n  \"productTypeCode\": \"all\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/rates?strictValidation=false",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rates"
          ],
          "query": [
            {
              "key": "strictValidation",
              "value": "false"
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"instance\": \"/expressapi/rates\",\n  \"detail\": \"The account number is not found or invalid. Please check the account number and retry.\",\n  \"title\": \"Bad request\",\n  \"message\": \"Bad request\",\n  \"status\": \"400\"\n}"
    },
    {
      "name": "Process errors",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          },
          {
            "description": "Please provide message reference\n",
            "key": "Message-Reference",
            "value": "d0e7832e-5c98-11ea-bc55-0242ac13"
          },
          {
            "description": "Optional reference date in the  HTTP-date format https://tools.ietf.org/html/rfc7231#section-7.1.1.2",
            "key": "Message-Reference-Date",
            "value": "Wed, 21 Oct 2015 07:28:00 GMT"
          },
          {
            "description": "Please provide name of the plugin (applicable to 3PV only)\n",
            "key": "Plugin-Name",
            "value": " "
          },
          {
            "description": "Please provide version of the plugin (applicable to 3PV only)\n",
            "key": "Plugin-Version",
            "value": " "
          },
          {
            "description": "Please provide name of the shipping platform(applicable to 3PV only)\n",
            "key": "Shipping-System-Platform-Name",
            "value": " "
          },
          {
            "description": "Please provide version of the shipping platform (applicable to 3PV only)\n",
            "key": "Shipping-System-Platform-Version",
            "value": " "
          },
          {
            "description": "Please provide name of the webstore platform (applicable to 3PV only)\n",
            "key": "Webstore-Platform-Name",
            "value": " "
          },
          {
            "description": "Please provide version of the webstore platform (applicable to 3PV only)\n",
            "key": "Webstore-Platform-Version",
            "value": " "
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customerDetails\": {\n    \"shipperDetails\": {\n      \"postalCode\": \"14800\",\n      \"cityName\": \"Prague\",\n      \"countryCode\": \"CZ\",\n      \"provinceCode\": \"CZ\",\n      \"addressLine1\": \"addres1\",\n      \"addressLine2\": \"addres2\",\n      \"addressLine3\": \"addres3\",\n      \"countyName\": \"Central Bohemia\"\n    },\n    \"receiverDetails\": {\n      \"postalCode\": \"14800\",\n      \"cityName\": \"Prague\",\n      \"countryCode\": \"CZ\",\n      \"provinceCode\": \"CZ\",\n      \"addressLine1\": \"addres1\",\n      \"addressLine2\": \"addres2\",\n      \"addressLine3\": \"addres3\",\n      \"countyName\": \"Central Bohemia\"\n    }\n  },\n  \"plannedShippingDateAndTime\": \"2020-03-24T13:00:00GMT+00:00\",\n  \"unitOfMeasurement\": \"metric\",\n  \"isCustomsDeclarable\": false,\n  \"packages\": [\n    {\n      \"weight\": 10.5,\n      \"dimensions\": {\n        \"length\": 25,\n        \"width\": 35,\n        \"height\": 15\n      },\n      \"typeCode\": \"3BX\"\n    }\n  ],\n  \"accounts\": [\n    {\n      \"typeCode\": \"shipper\",\n      \"number\": \"123456789\"\n    },\n    {\n      \"typeCode\": \"shipper\",\n      \"number\": \"123456789\"\n    }\n  ],\n  \"productCode\": \"P\",\n  \"localProductCode\": \"P\",\n  \"valueAddedServices\": [\n    {\n      \"serviceCode\": \"II\",\n      \"localServiceCode\": \"II\",\n      \"value\": 100,\n      \"currency\": \"GBP\",\n      \"method\": \"cash\"\n    },\n    {\n      \"serviceCode\": \"II\",\n      \"localServiceCode\": \"II\",\n      \"value\": 100,\n      \"currency\": \"GBP\",\n      \"method\": \"cash\"\n    }\n  ],\n  \"productsAndServices\": [\n    {\n      \"productCode\": \"P\",\n      \"localProductCode\": \"P\",\n      \"valueAddedServices\": [\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        },\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        }\n      ]\n    },\n    {\n      \"productCode\": \"P\",\n      \"localProductCode\": \"P\",\n      \"valueAddedServices\": [\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        },\n        {\n          \"serviceCode\": \"II\",\n          \"localServiceCode\": \"II\",\n          \"value\": 100,\n          \"currency\": \"GBP\",\n          \"method\": \"cash\"\n        }\n      ]\n    }\n  ],\n  \"payerCountryCode\": \"CZ\",\n  \"monetaryAmount\": [\n    {\n      \"typeCode\": \"declaredValue\",\n      \"value\": 100,\n      \"currency\": \"CZK\"\n    },\n    {\n      \"typeCode\": \"declaredValue\",\n      \"value\": 100,\n      \"currency\": \"CZK\"\n    }\n  ],\n  \"requestAllValueAddedServices\": false,\n  \"estimatedDeliveryDate\": {\n    \"isRequested\": false,\n    \"typeCode\": \"QDDC\"\n  },\n  \"getAdditionalInformation\": [\n    {\n      \"isRequested\": false,\n      \"typeCode\": \"allValueAddedServicesAndRuleGroups\"\n    },\n    {\n      \"isRequested\": false,\n      \"typeCode\": \"allValueAddedServices\"\n    }\n  ],\n  \"returnStandardProductsOnly\": false,\n  \"nextBusinessDay\": false,\n  \"productTypeCode\": \"all\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/rates?strictValidation=false",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rates"
          ],
          "query": [
            {
              "key": "strictValidation",
              "value": "false"
            }
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"instance\": \"/expressapi/rates\",\n  \"detail\": \"999: Process failure occurred. Process ID associated for that transaction (1234567890)\",\n  \"title\": \"Internal Server Error\",\n  \"message\": \"Internal Server Error\",\n  \"code\": \"500\"\n}"
    }
  ]
}