Chilkat Online Tools

delphiDll / Amazon Shipping API / get Collection Form History

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
sbRequestBody: HCkStringBuilder;
resp: HCkHttpResponse;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
carrierName: PWideChar;
creationDate: PWideChar;
generationStatus: PWideChar;
collectionFormId: PWideChar;
AddressLine1: PWideChar;
City: PWideChar;
CountryCode: PWideChar;
Name: PWideChar;
PostalCode: PWideChar;
StateOrRegion: PWideChar;
AddressLine2: PWideChar;
AddressLine3: PWideChar;
CompanyName: PWideChar;
v_Email: PWideChar;
PhoneNumber: PWideChar;
Latitude: PWideChar;
Longitude: PWideChar;
lastRefreshedDate: PWideChar;
i: Integer;
count_i: Integer;

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

http := CkHttp_Create();

// 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 := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'clientReferenceDetails[0].clientReferenceType','IntegratorMerchantId');
CkJsonObject_UpdateString(json,'clientReferenceDetails[0].clientReferenceId','<string>');
CkJsonObject_UpdateString(json,'clientReferenceDetails[1].clientReferenceType','IntegratorShipperId');
CkJsonObject_UpdateString(json,'clientReferenceDetails[1].clientReferenceId','<string>');
CkJsonObject_UpdateString(json,'maxResults','<integer>');
CkJsonObject_UpdateString(json,'carrierId','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.addressLine1','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.city','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.countryCode','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.name','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.postalCode','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.stateOrRegion','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.addressLine2','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.addressLine3','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.companyName','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.email','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.phoneNumber','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.geocode.latitude','<string>');
CkJsonObject_UpdateString(json,'shipFromAddress.geocode.longitude','<string>');
CkJsonObject_UpdateString(json,'dateRange.startDate','<string>');
CkJsonObject_UpdateString(json,'dateRange.endDate','<string>');

CkHttp_SetRequestHeader(http,'x-amzn-shipping-business-id','AmazonShipping_US');
CkHttp_SetRequestHeader(http,'Content-Type','application/json');
CkHttp_SetRequestHeader(http,'Accept','application/json');

sbRequestBody := CkStringBuilder_Create();
CkJsonObject_EmitSb(json,sbRequestBody);

resp := CkHttp_PTextSb(http,'PUT','https://sellingpartnerapi-eu.amazon.com/shipping/v2/collectionForms/history',sbRequestBody,'utf-8','application/json',False,False);
if (CkHttp_getLastMethodSuccess(http) = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

sbResponseBody := CkStringBuilder_Create();
CkHttpResponse_GetBodySb(resp,sbResponseBody);

jResp := CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,False);

Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));

respStatusCode := CkHttpResponse_getStatusCode(resp);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
  begin
    Memo1.Lines.Add('Response Header:');
    Memo1.Lines.Add(CkHttpResponse__header(resp));
    Memo1.Lines.Add('Failed.');
    CkHttpResponse_Dispose(resp);
    Exit;
  end;
CkHttpResponse_Dispose(resp);

// 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 := CkJsonObject__stringOf(jResp,'lastRefreshedDate');
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'collectionFormsHistoryRecordList');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    carrierName := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].carrierName');
    creationDate := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].creationDate');
    generationStatus := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].generationStatus');
    collectionFormId := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].collectionFormId');
    AddressLine1 := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.addressLine1');
    City := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.city');
    CountryCode := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.countryCode');
    Name := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.name');
    PostalCode := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.postalCode');
    StateOrRegion := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.stateOrRegion');
    AddressLine2 := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.addressLine2');
    AddressLine3 := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.addressLine3');
    CompanyName := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.companyName');
    v_Email := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.email');
    PhoneNumber := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.phoneNumber');
    Latitude := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.geocode.latitude');
    Longitude := CkJsonObject__stringOf(jResp,'collectionFormsHistoryRecordList[i].shipFromAddress.geocode.longitude');
    i := i + 1;
  end;

CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);

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}"
    }
  ]
}