Chilkat Online Tools

Perl / Amazon Shipping API / get Collection Form History

Back to Collection Items

use chilkat();

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

$http = chilkat::CkHttp->new();

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

# The following JSON is sent in the request body.

# {
#   "clientReferenceDetails": [
#     {
#       "clientReferenceType": "IntegratorMerchantId",
#       "clientReferenceId": "<string>"
#     },
#     {
#       "clientReferenceType": "IntegratorShipperId",
#       "clientReferenceId": "<string>"
#     }
#   ],
#   "maxResults": "<integer>",
#   "carrierId": "<string>",
#   "shipFromAddress": {
#     "addressLine1": "<string>",
#     "city": "<string>",
#     "countryCode": "<string>",
#     "name": "<string>",
#     "postalCode": "<string>",
#     "stateOrRegion": "<string>",
#     "addressLine2": "<string>",
#     "addressLine3": "<string>",
#     "companyName": "<string>",
#     "email": "<string>",
#     "phoneNumber": "<string>",
#     "geocode": {
#       "latitude": "<string>",
#       "longitude": "<string>"
#     }
#   },
#   "dateRange": {
#     "startDate": "<string>",
#     "endDate": "<string>"
#   }
# }

$json = chilkat::CkJsonObject->new();
$json->UpdateString("clientReferenceDetails[0].clientReferenceType","IntegratorMerchantId");
$json->UpdateString("clientReferenceDetails[0].clientReferenceId","<string>");
$json->UpdateString("clientReferenceDetails[1].clientReferenceType","IntegratorShipperId");
$json->UpdateString("clientReferenceDetails[1].clientReferenceId","<string>");
$json->UpdateString("maxResults","<integer>");
$json->UpdateString("carrierId","<string>");
$json->UpdateString("shipFromAddress.addressLine1","<string>");
$json->UpdateString("shipFromAddress.city","<string>");
$json->UpdateString("shipFromAddress.countryCode","<string>");
$json->UpdateString("shipFromAddress.name","<string>");
$json->UpdateString("shipFromAddress.postalCode","<string>");
$json->UpdateString("shipFromAddress.stateOrRegion","<string>");
$json->UpdateString("shipFromAddress.addressLine2","<string>");
$json->UpdateString("shipFromAddress.addressLine3","<string>");
$json->UpdateString("shipFromAddress.companyName","<string>");
$json->UpdateString("shipFromAddress.email","<string>");
$json->UpdateString("shipFromAddress.phoneNumber","<string>");
$json->UpdateString("shipFromAddress.geocode.latitude","<string>");
$json->UpdateString("shipFromAddress.geocode.longitude","<string>");
$json->UpdateString("dateRange.startDate","<string>");
$json->UpdateString("dateRange.endDate","<string>");

$http->SetRequestHeader("x-amzn-shipping-business-id","AmazonShipping_US");
$http->SetRequestHeader("Content-Type","application/json");
$http->SetRequestHeader("Accept","application/json");

$sbRequestBody = chilkat::CkStringBuilder->new();
$json->EmitSb($sbRequestBody);

# resp is a HttpResponse
$resp = $http->PTextSb("PUT","https://sellingpartnerapi-eu.amazon.com/shipping/v2/collectionForms/history",$sbRequestBody,"utf-8","application/json",0,0);
if ($http->get_LastMethodSuccess() == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

$sbResponseBody = chilkat::CkStringBuilder->new();
$resp->GetBodySb($sbResponseBody);

$jResp = chilkat::CkJsonObject->new();
$jResp->LoadSb($sbResponseBody);
$jResp->put_EmitCompact(0);

print "Response Body:" . "\r\n";
print $jResp->emit() . "\r\n";

$respStatusCode = $resp->get_StatusCode();
print "Response Status Code = " . $respStatusCode . "\r\n";
if ($respStatusCode >= 400) {
    print "Response Header:" . "\r\n";
    print $resp->header() . "\r\n";
    print "Failed." . "\r\n";

    exit;
}

# Sample JSON response:
# (Sample code for parsing the JSON response is shown below)

# {
#   "collectionFormsHistoryRecordList": [
#     {
#       "carrierName": "<string>",
#       "creationDate": "<string>",
#       "generationStatus": "InProgress",
#       "collectionFormId": "<string>",
#       "shipFromAddress": {
#         "addressLine1": "<string>",
#         "city": "<string>",
#         "countryCode": "<string>",
#         "name": "<string>",
#         "postalCode": "<string>",
#         "stateOrRegion": "<string>",
#         "addressLine2": "<string>",
#         "addressLine3": "<string>",
#         "companyName": "<string>",
#         "email": "<string>",
#         "phoneNumber": "<string>",
#         "geocode": {
#           "latitude": "<string>",
#           "longitude": "<string>"
#         }
#       }
#     },
#     {
#       "carrierName": "<string>",
#       "creationDate": "<string>",
#       "generationStatus": "InProgress",
#       "collectionFormId": "<string>",
#       "shipFromAddress": {
#         "addressLine1": "<string>",
#         "city": "<string>",
#         "countryCode": "<string>",
#         "name": "<string>",
#         "postalCode": "<string>",
#         "stateOrRegion": "<string>",
#         "addressLine2": "<string>",
#         "addressLine3": "<string>",
#         "companyName": "<string>",
#         "email": "<string>",
#         "phoneNumber": "<string>",
#         "geocode": {
#           "latitude": "<string>",
#           "longitude": "<string>"
#         }
#       }
#     }
#   ],
#   "lastRefreshedDate": "<string>"
# }

# Sample code for parsing the JSON response...
# Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

$lastRefreshedDate = $jResp->stringOf("lastRefreshedDate");
$i = 0;
$count_i = $jResp->SizeOfArray("collectionFormsHistoryRecordList");
while ($i < $count_i) {
    $jResp->put_I($i);
    $carrierName = $jResp->stringOf("collectionFormsHistoryRecordList[i].carrierName");
    $creationDate = $jResp->stringOf("collectionFormsHistoryRecordList[i].creationDate");
    $generationStatus = $jResp->stringOf("collectionFormsHistoryRecordList[i].generationStatus");
    $collectionFormId = $jResp->stringOf("collectionFormsHistoryRecordList[i].collectionFormId");
    $AddressLine1 = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.addressLine1");
    $City = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.city");
    $CountryCode = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.countryCode");
    $Name = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.name");
    $PostalCode = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.postalCode");
    $StateOrRegion = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.stateOrRegion");
    $AddressLine2 = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.addressLine2");
    $AddressLine3 = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.addressLine3");
    $CompanyName = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.companyName");
    $v_Email = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.email");
    $PhoneNumber = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.phoneNumber");
    $Latitude = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.geocode.latitude");
    $Longitude = $jResp->stringOf("collectionFormsHistoryRecordList[i].shipFromAddress.geocode.longitude");
    $i = $i + 1;
}

Curl Command

curl -X PUT
	-H "x-amzn-shipping-business-id: AmazonShipping_US"
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "clientReferenceDetails": [
    {
      "clientReferenceType": "IntegratorMerchantId",
      "clientReferenceId": "<string>"
    },
    {
      "clientReferenceType": "IntegratorShipperId",
      "clientReferenceId": "<string>"
    }
  ],
  "maxResults": "<integer>",
  "carrierId": "<string>",
  "shipFromAddress": {
    "addressLine1": "<string>",
    "city": "<string>",
    "countryCode": "<string>",
    "name": "<string>",
    "postalCode": "<string>",
    "stateOrRegion": "<string>",
    "addressLine2": "<string>",
    "addressLine3": "<string>",
    "companyName": "<string>",
    "email": "<string>",
    "phoneNumber": "<string>",
    "geocode": {
      "latitude": "<string>",
      "longitude": "<string>"
    }
  },
  "dateRange": {
    "startDate": "<string>",
    "endDate": "<string>"
  }
}'
https://sellingpartnerapi-eu.amazon.com/shipping/v2/collectionForms/history

Postman Collection Item JSON

{
  "name": "get Collection Form History",
  "request": {
    "method": "PUT",
    "header": [
      {
        "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
        "key": "x-amzn-shipping-business-id",
        "value": "AmazonShipping_US"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "shipping",
        "v2",
        "collectionForms",
        "history"
      ]
    },
    "description": "This API Call to get the history of the previously generated collection forms. \n\n**Usage Plan:**\n\n| Rate (requests per second) | Burst |\n| ---- | ---- |\n| 80 | 100 |\n\nThe `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)."
  },
  "response": [
    {
      "name": "Success.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "<string>",
          "description": {
            "content": "Your rate limit (requests per second) for this operation.",
            "type": "text/plain"
          }
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"collectionFormsHistoryRecordList\": [\n    {\n      \"carrierName\": \"<string>\",\n      \"creationDate\": \"<string>\",\n      \"generationStatus\": \"InProgress\",\n      \"collectionFormId\": \"<string>\",\n      \"shipFromAddress\": {\n        \"addressLine1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"countryCode\": \"<string>\",\n        \"name\": \"<string>\",\n        \"postalCode\": \"<string>\",\n        \"stateOrRegion\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"addressLine3\": \"<string>\",\n        \"companyName\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phoneNumber\": \"<string>\",\n        \"geocode\": {\n          \"latitude\": \"<string>\",\n          \"longitude\": \"<string>\"\n        }\n      }\n    },\n    {\n      \"carrierName\": \"<string>\",\n      \"creationDate\": \"<string>\",\n      \"generationStatus\": \"InProgress\",\n      \"collectionFormId\": \"<string>\",\n      \"shipFromAddress\": {\n        \"addressLine1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"countryCode\": \"<string>\",\n        \"name\": \"<string>\",\n        \"postalCode\": \"<string>\",\n        \"stateOrRegion\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"addressLine3\": \"<string>\",\n        \"companyName\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phoneNumber\": \"<string>\",\n        \"geocode\": {\n          \"latitude\": \"<string>\",\n          \"longitude\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"lastRefreshedDate\": \"<string>\"\n}"
    },
    {
      "name": "Request has missing or invalid parameters and cannot be parsed.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "<string>",
          "description": {
            "content": "Your rate limit (requests per second) for this operation.",
            "type": "text/plain"
          }
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "The request's Authorization header is not formatted correctly or does not contain a valid token.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "<string>",
          "description": {
            "content": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
            "type": "text/plain"
          }
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "Indicates that access to the resource is forbidden. Possible reasons include Access Denied, Unauthorized, Expired Token, or Invalid Signature.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "The resource specified does not exist.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "<string>",
          "description": {
            "content": "Your rate limit (requests per second) for this operation.",
            "type": "text/plain"
          }
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "The request size exceeded the maximum accepted size.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "Request Entity Too Large",
      "code": 413,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "<string>",
          "description": {
            "content": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
            "type": "text/plain"
          }
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "The request payload is in an unsupported format.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "Unsupported Media Type",
      "code": 415,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "<string>",
          "description": {
            "content": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
            "type": "text/plain"
          }
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "The frequency of requests was greater than allowed.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "<string>",
          "description": {
            "content": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
            "type": "text/plain"
          }
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "An unexpected condition occurred that prevented the server from fulfilling the request.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "<string>",
          "description": {
            "content": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
            "type": "text/plain"
          }
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "Temporary overloading or maintenance of the server.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "Amazon shipping business to assume for this request. The default is AmazonShipping_UK.",
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_US"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientReferenceDetails\": [\n    {\n      \"clientReferenceType\": \"IntegratorMerchantId\",\n      \"clientReferenceId\": \"<string>\"\n    },\n    {\n      \"clientReferenceType\": \"IntegratorShipperId\",\n      \"clientReferenceId\": \"<string>\"\n    }\n  ],\n  \"maxResults\": \"<integer>\",\n  \"carrierId\": \"<string>\",\n  \"shipFromAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"countryCode\": \"<string>\",\n    \"name\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"stateOrRegion\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"addressLine3\": \"<string>\",\n    \"companyName\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"geocode\": {\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    }\n  },\n  \"dateRange\": {\n    \"startDate\": \"<string>\",\n    \"endDate\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/shipping/v2/collectionForms/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shipping",
            "v2",
            "collectionForms",
            "history"
          ]
        }
      },
      "status": "Service Unavailable",
      "code": 503,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "<string>",
          "description": {
            "content": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
            "type": "text/plain"
          }
        },
        {
          "key": "x-amzn-RequestId",
          "value": "<string>",
          "description": {
            "content": "Unique request reference identifier.",
            "type": "text/plain"
          }
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"message\": \"<string>\",\n      \"details\": \"<string>\"\n    }\n  ]\n}"
    }
  ]
}