Chilkat Online Tools

delphiDll / Selling Partner API for Orders / get Order

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
strVal: PWideChar;
AmazonOrderId: PWideChar;
PurchaseDate: PWideChar;
LastUpdateDate: PWideChar;
OrderStatus: PWideChar;
FulfillmentChannel: PWideChar;
NumberOfItemsShipped: Integer;
NumberOfItemsUnshipped: Integer;
PaymentMethod: PWideChar;
MarketplaceId: PWideChar;
ShipmentServiceLevelCategory: PWideChar;
OrderType: PWideChar;
EarliestShipDate: PWideChar;
LatestShipDate: PWideChar;
IsBusinessOrder: Boolean;
IsPrime: Boolean;
IsGlobalExpressEnabled: Boolean;
IsPremiumOrder: Boolean;
IsSoldByAB: Boolean;
IsIBA: Boolean;
Name: PWideChar;
AddressLine1: PWideChar;
City: PWideChar;
StateOrRegion: PWideChar;
PostalCode: PWideChar;
CountryCode: PWideChar;
Phone: PWideChar;
AddressType: PWideChar;
FulfillmentSupplySourceId: PWideChar;
IsISPU: Boolean;
IsAccessPointOrder: Boolean;
ShippingAddressName: PWideChar;
ShippingAddressAddressLine1: PWideChar;
ShippingAddressCity: PWideChar;
ShippingAddressStateOrRegion: PWideChar;
ShippingAddressPostalCode: PWideChar;
ShippingAddressCountryCode: PWideChar;
BuyerEmail: PWideChar;
BuyerName: PWideChar;
CompanyLegalName: PWideChar;
PurchaseOrderNumber: PWideChar;
HasAutomatedShippingSettings: Boolean;
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();

CkHttp_SetRequestHeader(http,'Accept','application/json');

sbResponseBody := CkStringBuilder_Create();
success := CkHttp_QuickGetSb(http,'https://sellingpartnerapi-na.amazon.com/orders/v0/orders/:orderId',sbResponseBody);
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

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

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

respStatusCode := CkHttp_getLastStatus(http);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
  begin
    Memo1.Lines.Add('Response Header:');
    Memo1.Lines.Add(CkHttp__lastHeader(http));
    Memo1.Lines.Add('Failed.');
    Exit;
  end;

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

// {
//   "payload": {
//     "AmazonOrderId": "902-3159896-1390916",
//     "PurchaseDate": "2017-01-20T19:49:35Z",
//     "LastUpdateDate": "2017-01-20T19:49:35Z",
//     "OrderStatus": "Pending",
//     "FulfillmentChannel": "SellerFulfilled",
//     "NumberOfItemsShipped": 0,
//     "NumberOfItemsUnshipped": 0,
//     "PaymentMethod": "Other",
//     "PaymentMethodDetails": [
//       "CreditCard",
//       "GiftCerificate"
//     ],
//     "MarketplaceId": "ATVPDKIKX0DER",
//     "ShipmentServiceLevelCategory": "Standard",
//     "OrderType": "StandardOrder",
//     "EarliestShipDate": "2017-01-20T19:51:16Z",
//     "LatestShipDate": "2017-01-25T19:49:35Z",
//     "IsBusinessOrder": false,
//     "IsPrime": false,
//     "IsGlobalExpressEnabled": false,
//     "IsPremiumOrder": false,
//     "IsSoldByAB": false,
//     "IsIBA": false,
//     "DefaultShipFromLocationAddress": {
//       "Name": "MFNIntegrationTestMerchant",
//       "AddressLine1": "2201 WESTLAKE AVE",
//       "City": "SEATTLE",
//       "StateOrRegion": "WA",
//       "PostalCode": "98121-2778",
//       "CountryCode": "US",
//       "Phone": "+1 480-386-0930 ext. 73824",
//       "AddressType": "Commercial"
//     },
//     "FulfillmentInstruction": {
//       "FulfillmentSupplySourceId": "sampleSupplySourceId"
//     },
//     "IsISPU": false,
//     "IsAccessPointOrder": false,
//     "ShippingAddress": {
//       "Name": "Michigan address",
//       "AddressLine1": "1 Cross St.",
//       "City": "Canton",
//       "StateOrRegion": "MI",
//       "PostalCode": "48817",
//       "CountryCode": "US"
//     },
//     "BuyerInfo": {
//       "BuyerEmail": "user@example.com",
//       "BuyerName": "John Doe",
//       "BuyerTaxInfo": {
//         "CompanyLegalName": "A Company Name"
//       },
//       "PurchaseOrderNumber": "1234567890123"
//     },
//     "AutomatedShippingSettings": {
//       "HasAutomatedShippingSettings": false
//     }
//   }
// }

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

AmazonOrderId := CkJsonObject__stringOf(jResp,'payload.AmazonOrderId');
PurchaseDate := CkJsonObject__stringOf(jResp,'payload.PurchaseDate');
LastUpdateDate := CkJsonObject__stringOf(jResp,'payload.LastUpdateDate');
OrderStatus := CkJsonObject__stringOf(jResp,'payload.OrderStatus');
FulfillmentChannel := CkJsonObject__stringOf(jResp,'payload.FulfillmentChannel');
NumberOfItemsShipped := CkJsonObject_IntOf(jResp,'payload.NumberOfItemsShipped');
NumberOfItemsUnshipped := CkJsonObject_IntOf(jResp,'payload.NumberOfItemsUnshipped');
PaymentMethod := CkJsonObject__stringOf(jResp,'payload.PaymentMethod');
MarketplaceId := CkJsonObject__stringOf(jResp,'payload.MarketplaceId');
ShipmentServiceLevelCategory := CkJsonObject__stringOf(jResp,'payload.ShipmentServiceLevelCategory');
OrderType := CkJsonObject__stringOf(jResp,'payload.OrderType');
EarliestShipDate := CkJsonObject__stringOf(jResp,'payload.EarliestShipDate');
LatestShipDate := CkJsonObject__stringOf(jResp,'payload.LatestShipDate');
IsBusinessOrder := CkJsonObject_BoolOf(jResp,'payload.IsBusinessOrder');
IsPrime := CkJsonObject_BoolOf(jResp,'payload.IsPrime');
IsGlobalExpressEnabled := CkJsonObject_BoolOf(jResp,'payload.IsGlobalExpressEnabled');
IsPremiumOrder := CkJsonObject_BoolOf(jResp,'payload.IsPremiumOrder');
IsSoldByAB := CkJsonObject_BoolOf(jResp,'payload.IsSoldByAB');
IsIBA := CkJsonObject_BoolOf(jResp,'payload.IsIBA');
Name := CkJsonObject__stringOf(jResp,'payload.DefaultShipFromLocationAddress.Name');
AddressLine1 := CkJsonObject__stringOf(jResp,'payload.DefaultShipFromLocationAddress.AddressLine1');
City := CkJsonObject__stringOf(jResp,'payload.DefaultShipFromLocationAddress.City');
StateOrRegion := CkJsonObject__stringOf(jResp,'payload.DefaultShipFromLocationAddress.StateOrRegion');
PostalCode := CkJsonObject__stringOf(jResp,'payload.DefaultShipFromLocationAddress.PostalCode');
CountryCode := CkJsonObject__stringOf(jResp,'payload.DefaultShipFromLocationAddress.CountryCode');
Phone := CkJsonObject__stringOf(jResp,'payload.DefaultShipFromLocationAddress.Phone');
AddressType := CkJsonObject__stringOf(jResp,'payload.DefaultShipFromLocationAddress.AddressType');
FulfillmentSupplySourceId := CkJsonObject__stringOf(jResp,'payload.FulfillmentInstruction.FulfillmentSupplySourceId');
IsISPU := CkJsonObject_BoolOf(jResp,'payload.IsISPU');
IsAccessPointOrder := CkJsonObject_BoolOf(jResp,'payload.IsAccessPointOrder');
ShippingAddressName := CkJsonObject__stringOf(jResp,'payload.ShippingAddress.Name');
ShippingAddressAddressLine1 := CkJsonObject__stringOf(jResp,'payload.ShippingAddress.AddressLine1');
ShippingAddressCity := CkJsonObject__stringOf(jResp,'payload.ShippingAddress.City');
ShippingAddressStateOrRegion := CkJsonObject__stringOf(jResp,'payload.ShippingAddress.StateOrRegion');
ShippingAddressPostalCode := CkJsonObject__stringOf(jResp,'payload.ShippingAddress.PostalCode');
ShippingAddressCountryCode := CkJsonObject__stringOf(jResp,'payload.ShippingAddress.CountryCode');
BuyerEmail := CkJsonObject__stringOf(jResp,'payload.BuyerInfo.BuyerEmail');
BuyerName := CkJsonObject__stringOf(jResp,'payload.BuyerInfo.BuyerName');
CompanyLegalName := CkJsonObject__stringOf(jResp,'payload.BuyerInfo.BuyerTaxInfo.CompanyLegalName');
PurchaseOrderNumber := CkJsonObject__stringOf(jResp,'payload.BuyerInfo.PurchaseOrderNumber');
HasAutomatedShippingSettings := CkJsonObject_BoolOf(jResp,'payload.AutomatedShippingSettings.HasAutomatedShippingSettings');
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'payload.PaymentMethodDetails');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    strVal := CkJsonObject__stringOf(jResp,'payload.PaymentMethodDetails[i]');
    i := i + 1;
  end;

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

Curl Command

curl -X GET
	-H "Accept: application/json"
https://sellingpartnerapi-na.amazon.com/orders/v0/orders/:orderId

Postman Collection Item JSON

{
  "name": "get Order",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/orders/v0/orders/:orderId",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "orders",
        "v0",
        "orders",
        ":orderId"
      ],
      "variable": [
        {
          "key": "orderId",
          "value": "incididunt ea cillum",
          "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format."
        }
      ]
    },
    "description": "Returns the order that you specify.\n\n**Usage Plan:**\n\n| Rate (requests per second) | Burst |\n| ---- | ---- |\n| 0.0167 | 20 |\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](doc:usage-plans-and-rate-limits-in-the-sp-api)."
  },
  "response": [
    {
      "name": "Success.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId"
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "incididunt ea cillum",
          "description": "Your rate limit (requests per second) for this operation."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "incididunt ea cillum",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"payload\": {\n    \"AmazonOrderId\": \"902-3159896-1390916\",\n    \"PurchaseDate\": \"2017-01-20T19:49:35Z\",\n    \"LastUpdateDate\": \"2017-01-20T19:49:35Z\",\n    \"OrderStatus\": \"Pending\",\n    \"FulfillmentChannel\": \"SellerFulfilled\",\n    \"NumberOfItemsShipped\": 0,\n    \"NumberOfItemsUnshipped\": 0,\n    \"PaymentMethod\": \"Other\",\n    \"PaymentMethodDetails\": [\n      \"CreditCard\",\n      \"GiftCerificate\"\n    ],\n    \"MarketplaceId\": \"ATVPDKIKX0DER\",\n    \"ShipmentServiceLevelCategory\": \"Standard\",\n    \"OrderType\": \"StandardOrder\",\n    \"EarliestShipDate\": \"2017-01-20T19:51:16Z\",\n    \"LatestShipDate\": \"2017-01-25T19:49:35Z\",\n    \"IsBusinessOrder\": false,\n    \"IsPrime\": false,\n    \"IsGlobalExpressEnabled\": false,\n    \"IsPremiumOrder\": false,\n    \"IsSoldByAB\": false,\n    \"IsIBA\": false,\n    \"DefaultShipFromLocationAddress\": {\n      \"Name\": \"MFNIntegrationTestMerchant\",\n      \"AddressLine1\": \"2201 WESTLAKE AVE\",\n      \"City\": \"SEATTLE\",\n      \"StateOrRegion\": \"WA\",\n      \"PostalCode\": \"98121-2778\",\n      \"CountryCode\": \"US\",\n      \"Phone\": \"+1 480-386-0930 ext. 73824\",\n      \"AddressType\": \"Commercial\"\n    },\n    \"FulfillmentInstruction\": {\n      \"FulfillmentSupplySourceId\": \"sampleSupplySourceId\"\n    },\n    \"IsISPU\": false,\n    \"IsAccessPointOrder\": false,\n    \"ShippingAddress\": {\n      \"Name\": \"Michigan address\",\n      \"AddressLine1\": \"1 Cross St.\",\n      \"City\": \"Canton\",\n      \"StateOrRegion\": \"MI\",\n      \"PostalCode\": \"48817\",\n      \"CountryCode\": \"US\"\n    },\n    \"BuyerInfo\": {\n      \"BuyerEmail\": \"user@example.com\",\n      \"BuyerName\": \"John Doe\",\n      \"BuyerTaxInfo\": {\n        \"CompanyLegalName\": \"A Company Name\"\n      },\n      \"PurchaseOrderNumber\": \"1234567890123\"\n    },\n    \"AutomatedShippingSettings\": {\n      \"HasAutomatedShippingSettings\": false\n    }\n  }\n}"
    },
    {
      "name": "Request has missing or invalid parameters and cannot be parsed.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId"
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format."
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "incididunt ea cillum",
          "description": "Your rate limit (requests per second) for this operation."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "incididunt ea cillum",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"payload\": {\n    \"AmazonOrderId\": \"sed incididunt\",\n    \"LastUpdateDate\": \"sunt sit\",\n    \"OrderStatus\": \"Pending\",\n    \"PurchaseDate\": \"labore\",\n    \"SellerOrderId\": \"enim irure\",\n    \"FulfillmentChannel\": \"MFN\",\n    \"SalesChannel\": \"et\",\n    \"OrderChannel\": \"veniam consectetur id eiusmod\",\n    \"ShipServiceLevel\": \"ullamco dolore E\",\n    \"OrderTotal\": {\n      \"CurrencyCode\": \"adipisicing non quis id nulla\",\n      \"Amount\": \"laborum laboris sunt\"\n    },\n    \"NumberOfItemsShipped\": 30803688,\n    \"NumberOfItemsUnshipped\": -70671515,\n    \"PaymentExecutionDetail\": [\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"minim deserunt\"\n      },\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"esse et quis\"\n      }\n    ],\n    \"PaymentMethod\": \"Other\",\n    \"PaymentMethodDetails\": [\n      \"voluptate qui labore proident\",\n      \"elit\"\n    ],\n    \"MarketplaceId\": \"deserunt minim officia\",\n    \"ShipmentServiceLevelCategory\": \"Lorem tempor\",\n    \"EasyShipShipmentStatus\": \"Damaged\",\n    \"CbaDisplayableShippingLabel\": \"ex velit eiusmod\",\n    \"OrderType\": \"LongLeadTimeOrder\",\n    \"EarliestShipDate\": \"proident qui nulla\",\n    \"LatestShipDate\": \"aliqua deserunt eu nulla ad\",\n    \"EarliestDeliveryDate\": \"in ea ut\",\n    \"LatestDeliveryDate\": \"in ad ut\",\n    \"IsBusinessOrder\": true,\n    \"IsPrime\": false,\n    \"IsPremiumOrder\": false,\n    \"IsGlobalExpressEnabled\": true,\n    \"ReplacedOrderId\": \"mollit eiusmod\",\n    \"IsReplacementOrder\": true,\n    \"PromiseResponseDueDate\": \"officia \",\n    \"IsEstimatedShipDateSet\": true,\n    \"IsSoldByAB\": false,\n    \"IsIBA\": false,\n    \"DefaultShipFromLocationAddress\": {\n      \"Name\": \"veniam anim laboris commodo\",\n      \"AddressLine1\": \"pariatur commodo amet exercitation\",\n      \"AddressLine2\": \"aliquip in Ut cillum\",\n      \"AddressLine3\": \"Duis ex Ut ullamco\",\n      \"City\": \"quis sunt reprehenderit exercitation dolor\",\n      \"County\": \"consequat\",\n      \"District\": \"reprehenderit Duis ex\",\n      \"StateOrRegion\": \"adipisicing tempor ut reprehenderit id\",\n      \"Municipality\": \"qui\",\n      \"PostalCode\": \"ad reprehenderit laborum sunt\",\n      \"CountryCode\": \"aliqua et qui officia\",\n      \"Phone\": \"nostrud exercitation laborum\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInvoicePreference\": \"INDIVIDUAL\",\n    \"BuyerTaxInformation\": {\n      \"BuyerLegalCompanyName\": \"in qui\",\n      \"BuyerBusinessAddress\": \"Duis magna et\",\n      \"BuyerTaxRegistrationId\": \"exercitation consequat\",\n      \"BuyerTaxOffice\": \"enim officia incididunt est sint\"\n    },\n    \"FulfillmentInstruction\": {\n      \"FulfillmentSupplySourceId\": \"in sint\"\n    },\n    \"IsISPU\": true,\n    \"IsAccessPointOrder\": false,\n    \"MarketplaceTaxInfo\": {\n      \"TaxClassifications\": [\n        {\n          \"Name\": \"in officia elit quis commodo\",\n          \"Value\": \"et non aliquip\"\n        },\n        {\n          \"Name\": \"aute culpa nisi\",\n          \"Value\": \"dolore amet Lorem\"\n        }\n      ]\n    },\n    \"SellerDisplayName\": \"qui ut fugiat\",\n    \"ShippingAddress\": {\n      \"Name\": \"commodo Duis aliquip eiusmod\",\n      \"AddressLine1\": \"elit exerci\",\n      \"AddressLine2\": \"ex esse Excepteur\",\n      \"AddressLine3\": \"deserunt eu sed magna ex\",\n      \"City\": \"eiusmod in ad\",\n      \"County\": \"tempor\",\n      \"District\": \"id sit\",\n      \"StateOrRegion\": \"dolore sit\",\n      \"Municipality\": \"pariatur ipsum mollit\",\n      \"PostalCode\": \"sed\",\n      \"CountryCode\": \"minim in nulla sint\",\n      \"Phone\": \"cupidatat ni\",\n      \"AddressType\": \"Commercial\"\n    },\n    \"BuyerInfo\": {\n      \"BuyerEmail\": \"Ut ut\",\n      \"BuyerName\": \"tempor dolor nisi Lorem\",\n      \"BuyerCounty\": \"laborum culpa eiusmod voluptate\",\n      \"BuyerTaxInfo\": {\n        \"CompanyLegalName\": \"deserunt occaeca\",\n        \"TaxingRegion\": \"ad\",\n        \"TaxClassifications\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"PurchaseOrderNumber\": \"in ea consectetur\"\n    },\n    \"AutomatedShippingSettings\": {\n      \"HasAutomatedShippingSettings\": true,\n      \"AutomatedCarrier\": \"deserunt sunt amet anim exercitation\",\n      \"AutomatedShipMethod\": \"aute non aliquip elit enim\"\n    },\n    \"HasRegulatedItems\": false,\n    \"ElectronicInvoiceStatus\": \"Errored\",\n    \"ItemApprovalTypes\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"ItemApprovalStatus\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"errors\": [\n    {\n      \"code\": \"velit Lorem dolore aute reprehenderit\",\n      \"message\": \"commodo tempor null\",\n      \"details\": \"cupidatat consequat\"\n    },\n    {\n      \"code\": \"l\",\n      \"message\": \"veniam occaecat Lorem sint\",\n      \"details\": \"officia in\"\n    }\n  ]\n}"
    },
    {
      "name": "Indicates access to the resource is forbidden. Possible reasons include Access Denied, Unauthorized, Expired Token, or Invalid Signature.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId"
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format."
            }
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RequestId",
          "value": "incididunt ea cillum",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"payload\": {\n    \"AmazonOrderId\": \"in consequat\",\n    \"LastUpdateDate\": \"cillum Ut inci\",\n    \"OrderStatus\": \"InvoiceUnconfirmed\",\n    \"PurchaseDate\": \"Excepteur Lorem\",\n    \"SellerOrderId\": \"ut dolor Ut pariatur\",\n    \"FulfillmentChannel\": \"AFN\",\n    \"SalesChannel\": \"cupidatat amet nulla id sed\",\n    \"OrderChannel\": \"occaecat esse adipisicing\",\n    \"ShipServiceLevel\": \"cillum sunt\",\n    \"OrderTotal\": {\n      \"CurrencyCode\": \"incididunt mollit officia ad proident\",\n      \"Amount\": \"pariatur\"\n    },\n    \"NumberOfItemsShipped\": -25194452,\n    \"NumberOfItemsUnshipped\": 41616242,\n    \"PaymentExecutionDetail\": [\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"culpa dolor dolore adipisicing ut\"\n      },\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"ullamco Lorem\"\n      }\n    ],\n    \"PaymentMethod\": \"Other\",\n    \"PaymentMethodDetails\": [\n      \"ea deserunt eu et\",\n      \"ipsum\"\n    ],\n    \"MarketplaceId\": \"aliqua proident\",\n    \"ShipmentServiceLevelCategory\": \"esse officia\",\n    \"EasyShipShipmentStatus\": \"ReturnedToSeller\",\n    \"CbaDisplayableShippingLabel\": \"ut Lorem incididunt sit esse\",\n    \"OrderType\": \"LongLeadTimeOrder\",\n    \"EarliestShipDate\": \"tempor proident\",\n    \"LatestShipDate\": \"sit officia eu\",\n    \"EarliestDeliveryDate\": \"occaecat\",\n    \"LatestDeliveryDate\": \"deserunt\",\n    \"IsBusinessOrder\": true,\n    \"IsPrime\": false,\n    \"IsPremiumOrder\": false,\n    \"IsGlobalExpressEnabled\": false,\n    \"ReplacedOrderId\": \"dolore dolore v\",\n    \"IsReplacementOrder\": true,\n    \"PromiseResponseDueDate\": \"dolor proident eiusmod\",\n    \"IsEstimatedShipDateSet\": false,\n    \"IsSoldByAB\": true,\n    \"IsIBA\": false,\n    \"DefaultShipFromLocationAddress\": {\n      \"Name\": \"cupidatat id\",\n      \"AddressLine1\": \"qui mollit irure\",\n      \"AddressLine2\": \"cupidatat Excepteur proident\",\n      \"AddressLine3\": \"id incididunt minim ullamco\",\n      \"City\": \"Lorem ullamco ea\",\n      \"County\": \"fugiat veniam anim laborum\",\n      \"District\": \"Excepteur veniam occaecat non elit\",\n      \"StateOrRegion\": \"irure exercitati\",\n      \"Municipality\": \"min\",\n      \"PostalCode\": \"anim in ullamco\",\n      \"CountryCode\": \"consequat proident veniam\",\n      \"Phone\": \"\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInvoicePreference\": \"BUSINESS\",\n    \"BuyerTaxInformation\": {\n      \"BuyerLegalCompanyName\": \"commodo\",\n      \"BuyerBusinessAddress\": \"mollit est\",\n      \"BuyerTaxRegistrationId\": \"elit id\",\n      \"BuyerTaxOffice\": \"nostrud commodo\"\n    },\n    \"FulfillmentInstruction\": {\n      \"FulfillmentSupplySourceId\": \"voluptate\"\n    },\n    \"IsISPU\": true,\n    \"IsAccessPointOrder\": true,\n    \"MarketplaceTaxInfo\": {\n      \"TaxClassifications\": [\n        {\n          \"Name\": \"eu minim in\",\n          \"Value\": \"minim ipsum\"\n        },\n        {\n          \"Name\": \"\",\n          \"Value\": \"sint irure exercitation\"\n        }\n      ]\n    },\n    \"SellerDisplayName\": \"ullamco Excepteur nostrud non et\",\n    \"ShippingAddress\": {\n      \"Name\": \"tempor enim ipsum aliquip proident\",\n      \"AddressLine1\": \"cupidatat aliquip consequat sit\",\n      \"AddressLine2\": \"dolor magna\",\n      \"AddressLine3\": \"velit\",\n      \"City\": \"deserunt ex officia reprehenderit\",\n      \"County\": \"non ea mollit\",\n      \"District\": \"anim nostrud exercitation\",\n      \"StateOrRegion\": \"consectetur\",\n      \"Municipality\": \"dolore\",\n      \"PostalCode\": \"do cupidatat sunt Duis\",\n      \"CountryCode\": \"adipisicing consectetur amet voluptate ex\",\n      \"Phone\": \"enim Ut reprehenderit\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInfo\": {\n      \"BuyerEmail\": \"non nulla fugiat eu qui\",\n      \"BuyerName\": \"ullamco eiusmod\",\n      \"BuyerCounty\": \"deserunt est cillum magna\",\n      \"BuyerTaxInfo\": {\n        \"CompanyLegalName\": \"consectetur nulla est\",\n        \"TaxingRegion\": \"in aliquip et nisi \",\n        \"TaxClassifications\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"PurchaseOrderNumber\": \"aliquip eu dolor adipisicing\"\n    },\n    \"AutomatedShippingSettings\": {\n      \"HasAutomatedShippingSettings\": false,\n      \"AutomatedCarrier\": \"ex Duis dolore\",\n      \"AutomatedShipMethod\": \"reprehenderit Ut adipisicing Excepteur et\"\n    },\n    \"HasRegulatedItems\": false,\n    \"ElectronicInvoiceStatus\": \"NotFound\",\n    \"ItemApprovalTypes\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"ItemApprovalStatus\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"errors\": [\n    {\n      \"code\": \"mollit Lorem\",\n      \"message\": \"ea sed officia in\",\n      \"details\": \"ut veniam\"\n    },\n    {\n      \"code\": \"dolor pa\",\n      \"message\": \"dolor\",\n      \"details\": \"non magna veniam\"\n    }\n  ]\n}"
    },
    {
      "name": "The resource specified does not exist.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId"
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format."
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "incididunt ea cillum",
          "description": "Your rate limit (requests per second) for this operation."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "incididunt ea cillum",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"payload\": {\n    \"AmazonOrderId\": \"in consequat\",\n    \"LastUpdateDate\": \"cillum Ut inci\",\n    \"OrderStatus\": \"InvoiceUnconfirmed\",\n    \"PurchaseDate\": \"Excepteur Lorem\",\n    \"SellerOrderId\": \"ut dolor Ut pariatur\",\n    \"FulfillmentChannel\": \"AFN\",\n    \"SalesChannel\": \"cupidatat amet nulla id sed\",\n    \"OrderChannel\": \"occaecat esse adipisicing\",\n    \"ShipServiceLevel\": \"cillum sunt\",\n    \"OrderTotal\": {\n      \"CurrencyCode\": \"incididunt mollit officia ad proident\",\n      \"Amount\": \"pariatur\"\n    },\n    \"NumberOfItemsShipped\": -25194452,\n    \"NumberOfItemsUnshipped\": 41616242,\n    \"PaymentExecutionDetail\": [\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"culpa dolor dolore adipisicing ut\"\n      },\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"ullamco Lorem\"\n      }\n    ],\n    \"PaymentMethod\": \"Other\",\n    \"PaymentMethodDetails\": [\n      \"ea deserunt eu et\",\n      \"ipsum\"\n    ],\n    \"MarketplaceId\": \"aliqua proident\",\n    \"ShipmentServiceLevelCategory\": \"esse officia\",\n    \"EasyShipShipmentStatus\": \"ReturnedToSeller\",\n    \"CbaDisplayableShippingLabel\": \"ut Lorem incididunt sit esse\",\n    \"OrderType\": \"LongLeadTimeOrder\",\n    \"EarliestShipDate\": \"tempor proident\",\n    \"LatestShipDate\": \"sit officia eu\",\n    \"EarliestDeliveryDate\": \"occaecat\",\n    \"LatestDeliveryDate\": \"deserunt\",\n    \"IsBusinessOrder\": true,\n    \"IsPrime\": false,\n    \"IsPremiumOrder\": false,\n    \"IsGlobalExpressEnabled\": false,\n    \"ReplacedOrderId\": \"dolore dolore v\",\n    \"IsReplacementOrder\": true,\n    \"PromiseResponseDueDate\": \"dolor proident eiusmod\",\n    \"IsEstimatedShipDateSet\": false,\n    \"IsSoldByAB\": true,\n    \"IsIBA\": false,\n    \"DefaultShipFromLocationAddress\": {\n      \"Name\": \"cupidatat id\",\n      \"AddressLine1\": \"qui mollit irure\",\n      \"AddressLine2\": \"cupidatat Excepteur proident\",\n      \"AddressLine3\": \"id incididunt minim ullamco\",\n      \"City\": \"Lorem ullamco ea\",\n      \"County\": \"fugiat veniam anim laborum\",\n      \"District\": \"Excepteur veniam occaecat non elit\",\n      \"StateOrRegion\": \"irure exercitati\",\n      \"Municipality\": \"min\",\n      \"PostalCode\": \"anim in ullamco\",\n      \"CountryCode\": \"consequat proident veniam\",\n      \"Phone\": \"\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInvoicePreference\": \"BUSINESS\",\n    \"BuyerTaxInformation\": {\n      \"BuyerLegalCompanyName\": \"commodo\",\n      \"BuyerBusinessAddress\": \"mollit est\",\n      \"BuyerTaxRegistrationId\": \"elit id\",\n      \"BuyerTaxOffice\": \"nostrud commodo\"\n    },\n    \"FulfillmentInstruction\": {\n      \"FulfillmentSupplySourceId\": \"voluptate\"\n    },\n    \"IsISPU\": true,\n    \"IsAccessPointOrder\": true,\n    \"MarketplaceTaxInfo\": {\n      \"TaxClassifications\": [\n        {\n          \"Name\": \"eu minim in\",\n          \"Value\": \"minim ipsum\"\n        },\n        {\n          \"Name\": \"\",\n          \"Value\": \"sint irure exercitation\"\n        }\n      ]\n    },\n    \"SellerDisplayName\": \"ullamco Excepteur nostrud non et\",\n    \"ShippingAddress\": {\n      \"Name\": \"tempor enim ipsum aliquip proident\",\n      \"AddressLine1\": \"cupidatat aliquip consequat sit\",\n      \"AddressLine2\": \"dolor magna\",\n      \"AddressLine3\": \"velit\",\n      \"City\": \"deserunt ex officia reprehenderit\",\n      \"County\": \"non ea mollit\",\n      \"District\": \"anim nostrud exercitation\",\n      \"StateOrRegion\": \"consectetur\",\n      \"Municipality\": \"dolore\",\n      \"PostalCode\": \"do cupidatat sunt Duis\",\n      \"CountryCode\": \"adipisicing consectetur amet voluptate ex\",\n      \"Phone\": \"enim Ut reprehenderit\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInfo\": {\n      \"BuyerEmail\": \"non nulla fugiat eu qui\",\n      \"BuyerName\": \"ullamco eiusmod\",\n      \"BuyerCounty\": \"deserunt est cillum magna\",\n      \"BuyerTaxInfo\": {\n        \"CompanyLegalName\": \"consectetur nulla est\",\n        \"TaxingRegion\": \"in aliquip et nisi \",\n        \"TaxClassifications\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"PurchaseOrderNumber\": \"aliquip eu dolor adipisicing\"\n    },\n    \"AutomatedShippingSettings\": {\n      \"HasAutomatedShippingSettings\": false,\n      \"AutomatedCarrier\": \"ex Duis dolore\",\n      \"AutomatedShipMethod\": \"reprehenderit Ut adipisicing Excepteur et\"\n    },\n    \"HasRegulatedItems\": false,\n    \"ElectronicInvoiceStatus\": \"NotFound\",\n    \"ItemApprovalTypes\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"ItemApprovalStatus\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"errors\": [\n    {\n      \"code\": \"mollit Lorem\",\n      \"message\": \"ea sed officia in\",\n      \"details\": \"ut veniam\"\n    },\n    {\n      \"code\": \"dolor pa\",\n      \"message\": \"dolor\",\n      \"details\": \"non magna veniam\"\n    }\n  ]\n}"
    },
    {
      "name": "The frequency of requests was greater than allowed.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId"
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format."
            }
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "incididunt ea cillum",
          "description": "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."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "incididunt ea cillum",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"payload\": {\n    \"AmazonOrderId\": \"in consequat\",\n    \"LastUpdateDate\": \"cillum Ut inci\",\n    \"OrderStatus\": \"InvoiceUnconfirmed\",\n    \"PurchaseDate\": \"Excepteur Lorem\",\n    \"SellerOrderId\": \"ut dolor Ut pariatur\",\n    \"FulfillmentChannel\": \"AFN\",\n    \"SalesChannel\": \"cupidatat amet nulla id sed\",\n    \"OrderChannel\": \"occaecat esse adipisicing\",\n    \"ShipServiceLevel\": \"cillum sunt\",\n    \"OrderTotal\": {\n      \"CurrencyCode\": \"incididunt mollit officia ad proident\",\n      \"Amount\": \"pariatur\"\n    },\n    \"NumberOfItemsShipped\": -25194452,\n    \"NumberOfItemsUnshipped\": 41616242,\n    \"PaymentExecutionDetail\": [\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"culpa dolor dolore adipisicing ut\"\n      },\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"ullamco Lorem\"\n      }\n    ],\n    \"PaymentMethod\": \"Other\",\n    \"PaymentMethodDetails\": [\n      \"ea deserunt eu et\",\n      \"ipsum\"\n    ],\n    \"MarketplaceId\": \"aliqua proident\",\n    \"ShipmentServiceLevelCategory\": \"esse officia\",\n    \"EasyShipShipmentStatus\": \"ReturnedToSeller\",\n    \"CbaDisplayableShippingLabel\": \"ut Lorem incididunt sit esse\",\n    \"OrderType\": \"LongLeadTimeOrder\",\n    \"EarliestShipDate\": \"tempor proident\",\n    \"LatestShipDate\": \"sit officia eu\",\n    \"EarliestDeliveryDate\": \"occaecat\",\n    \"LatestDeliveryDate\": \"deserunt\",\n    \"IsBusinessOrder\": true,\n    \"IsPrime\": false,\n    \"IsPremiumOrder\": false,\n    \"IsGlobalExpressEnabled\": false,\n    \"ReplacedOrderId\": \"dolore dolore v\",\n    \"IsReplacementOrder\": true,\n    \"PromiseResponseDueDate\": \"dolor proident eiusmod\",\n    \"IsEstimatedShipDateSet\": false,\n    \"IsSoldByAB\": true,\n    \"IsIBA\": false,\n    \"DefaultShipFromLocationAddress\": {\n      \"Name\": \"cupidatat id\",\n      \"AddressLine1\": \"qui mollit irure\",\n      \"AddressLine2\": \"cupidatat Excepteur proident\",\n      \"AddressLine3\": \"id incididunt minim ullamco\",\n      \"City\": \"Lorem ullamco ea\",\n      \"County\": \"fugiat veniam anim laborum\",\n      \"District\": \"Excepteur veniam occaecat non elit\",\n      \"StateOrRegion\": \"irure exercitati\",\n      \"Municipality\": \"min\",\n      \"PostalCode\": \"anim in ullamco\",\n      \"CountryCode\": \"consequat proident veniam\",\n      \"Phone\": \"\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInvoicePreference\": \"BUSINESS\",\n    \"BuyerTaxInformation\": {\n      \"BuyerLegalCompanyName\": \"commodo\",\n      \"BuyerBusinessAddress\": \"mollit est\",\n      \"BuyerTaxRegistrationId\": \"elit id\",\n      \"BuyerTaxOffice\": \"nostrud commodo\"\n    },\n    \"FulfillmentInstruction\": {\n      \"FulfillmentSupplySourceId\": \"voluptate\"\n    },\n    \"IsISPU\": true,\n    \"IsAccessPointOrder\": true,\n    \"MarketplaceTaxInfo\": {\n      \"TaxClassifications\": [\n        {\n          \"Name\": \"eu minim in\",\n          \"Value\": \"minim ipsum\"\n        },\n        {\n          \"Name\": \"\",\n          \"Value\": \"sint irure exercitation\"\n        }\n      ]\n    },\n    \"SellerDisplayName\": \"ullamco Excepteur nostrud non et\",\n    \"ShippingAddress\": {\n      \"Name\": \"tempor enim ipsum aliquip proident\",\n      \"AddressLine1\": \"cupidatat aliquip consequat sit\",\n      \"AddressLine2\": \"dolor magna\",\n      \"AddressLine3\": \"velit\",\n      \"City\": \"deserunt ex officia reprehenderit\",\n      \"County\": \"non ea mollit\",\n      \"District\": \"anim nostrud exercitation\",\n      \"StateOrRegion\": \"consectetur\",\n      \"Municipality\": \"dolore\",\n      \"PostalCode\": \"do cupidatat sunt Duis\",\n      \"CountryCode\": \"adipisicing consectetur amet voluptate ex\",\n      \"Phone\": \"enim Ut reprehenderit\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInfo\": {\n      \"BuyerEmail\": \"non nulla fugiat eu qui\",\n      \"BuyerName\": \"ullamco eiusmod\",\n      \"BuyerCounty\": \"deserunt est cillum magna\",\n      \"BuyerTaxInfo\": {\n        \"CompanyLegalName\": \"consectetur nulla est\",\n        \"TaxingRegion\": \"in aliquip et nisi \",\n        \"TaxClassifications\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"PurchaseOrderNumber\": \"aliquip eu dolor adipisicing\"\n    },\n    \"AutomatedShippingSettings\": {\n      \"HasAutomatedShippingSettings\": false,\n      \"AutomatedCarrier\": \"ex Duis dolore\",\n      \"AutomatedShipMethod\": \"reprehenderit Ut adipisicing Excepteur et\"\n    },\n    \"HasRegulatedItems\": false,\n    \"ElectronicInvoiceStatus\": \"NotFound\",\n    \"ItemApprovalTypes\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"ItemApprovalStatus\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"errors\": [\n    {\n      \"code\": \"mollit Lorem\",\n      \"message\": \"ea sed officia in\",\n      \"details\": \"ut veniam\"\n    },\n    {\n      \"code\": \"dolor pa\",\n      \"message\": \"dolor\",\n      \"details\": \"non magna veniam\"\n    }\n  ]\n}"
    },
    {
      "name": "An unexpected condition occurred that prevented the server from fulfilling the request.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId"
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format."
            }
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "incididunt ea cillum",
          "description": "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."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "incididunt ea cillum",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"payload\": {\n    \"AmazonOrderId\": \"in consequat\",\n    \"LastUpdateDate\": \"cillum Ut inci\",\n    \"OrderStatus\": \"InvoiceUnconfirmed\",\n    \"PurchaseDate\": \"Excepteur Lorem\",\n    \"SellerOrderId\": \"ut dolor Ut pariatur\",\n    \"FulfillmentChannel\": \"AFN\",\n    \"SalesChannel\": \"cupidatat amet nulla id sed\",\n    \"OrderChannel\": \"occaecat esse adipisicing\",\n    \"ShipServiceLevel\": \"cillum sunt\",\n    \"OrderTotal\": {\n      \"CurrencyCode\": \"incididunt mollit officia ad proident\",\n      \"Amount\": \"pariatur\"\n    },\n    \"NumberOfItemsShipped\": -25194452,\n    \"NumberOfItemsUnshipped\": 41616242,\n    \"PaymentExecutionDetail\": [\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"culpa dolor dolore adipisicing ut\"\n      },\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"ullamco Lorem\"\n      }\n    ],\n    \"PaymentMethod\": \"Other\",\n    \"PaymentMethodDetails\": [\n      \"ea deserunt eu et\",\n      \"ipsum\"\n    ],\n    \"MarketplaceId\": \"aliqua proident\",\n    \"ShipmentServiceLevelCategory\": \"esse officia\",\n    \"EasyShipShipmentStatus\": \"ReturnedToSeller\",\n    \"CbaDisplayableShippingLabel\": \"ut Lorem incididunt sit esse\",\n    \"OrderType\": \"LongLeadTimeOrder\",\n    \"EarliestShipDate\": \"tempor proident\",\n    \"LatestShipDate\": \"sit officia eu\",\n    \"EarliestDeliveryDate\": \"occaecat\",\n    \"LatestDeliveryDate\": \"deserunt\",\n    \"IsBusinessOrder\": true,\n    \"IsPrime\": false,\n    \"IsPremiumOrder\": false,\n    \"IsGlobalExpressEnabled\": false,\n    \"ReplacedOrderId\": \"dolore dolore v\",\n    \"IsReplacementOrder\": true,\n    \"PromiseResponseDueDate\": \"dolor proident eiusmod\",\n    \"IsEstimatedShipDateSet\": false,\n    \"IsSoldByAB\": true,\n    \"IsIBA\": false,\n    \"DefaultShipFromLocationAddress\": {\n      \"Name\": \"cupidatat id\",\n      \"AddressLine1\": \"qui mollit irure\",\n      \"AddressLine2\": \"cupidatat Excepteur proident\",\n      \"AddressLine3\": \"id incididunt minim ullamco\",\n      \"City\": \"Lorem ullamco ea\",\n      \"County\": \"fugiat veniam anim laborum\",\n      \"District\": \"Excepteur veniam occaecat non elit\",\n      \"StateOrRegion\": \"irure exercitati\",\n      \"Municipality\": \"min\",\n      \"PostalCode\": \"anim in ullamco\",\n      \"CountryCode\": \"consequat proident veniam\",\n      \"Phone\": \"\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInvoicePreference\": \"BUSINESS\",\n    \"BuyerTaxInformation\": {\n      \"BuyerLegalCompanyName\": \"commodo\",\n      \"BuyerBusinessAddress\": \"mollit est\",\n      \"BuyerTaxRegistrationId\": \"elit id\",\n      \"BuyerTaxOffice\": \"nostrud commodo\"\n    },\n    \"FulfillmentInstruction\": {\n      \"FulfillmentSupplySourceId\": \"voluptate\"\n    },\n    \"IsISPU\": true,\n    \"IsAccessPointOrder\": true,\n    \"MarketplaceTaxInfo\": {\n      \"TaxClassifications\": [\n        {\n          \"Name\": \"eu minim in\",\n          \"Value\": \"minim ipsum\"\n        },\n        {\n          \"Name\": \"\",\n          \"Value\": \"sint irure exercitation\"\n        }\n      ]\n    },\n    \"SellerDisplayName\": \"ullamco Excepteur nostrud non et\",\n    \"ShippingAddress\": {\n      \"Name\": \"tempor enim ipsum aliquip proident\",\n      \"AddressLine1\": \"cupidatat aliquip consequat sit\",\n      \"AddressLine2\": \"dolor magna\",\n      \"AddressLine3\": \"velit\",\n      \"City\": \"deserunt ex officia reprehenderit\",\n      \"County\": \"non ea mollit\",\n      \"District\": \"anim nostrud exercitation\",\n      \"StateOrRegion\": \"consectetur\",\n      \"Municipality\": \"dolore\",\n      \"PostalCode\": \"do cupidatat sunt Duis\",\n      \"CountryCode\": \"adipisicing consectetur amet voluptate ex\",\n      \"Phone\": \"enim Ut reprehenderit\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInfo\": {\n      \"BuyerEmail\": \"non nulla fugiat eu qui\",\n      \"BuyerName\": \"ullamco eiusmod\",\n      \"BuyerCounty\": \"deserunt est cillum magna\",\n      \"BuyerTaxInfo\": {\n        \"CompanyLegalName\": \"consectetur nulla est\",\n        \"TaxingRegion\": \"in aliquip et nisi \",\n        \"TaxClassifications\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"PurchaseOrderNumber\": \"aliquip eu dolor adipisicing\"\n    },\n    \"AutomatedShippingSettings\": {\n      \"HasAutomatedShippingSettings\": false,\n      \"AutomatedCarrier\": \"ex Duis dolore\",\n      \"AutomatedShipMethod\": \"reprehenderit Ut adipisicing Excepteur et\"\n    },\n    \"HasRegulatedItems\": false,\n    \"ElectronicInvoiceStatus\": \"NotFound\",\n    \"ItemApprovalTypes\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"ItemApprovalStatus\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"errors\": [\n    {\n      \"code\": \"mollit Lorem\",\n      \"message\": \"ea sed officia in\",\n      \"details\": \"ut veniam\"\n    },\n    {\n      \"code\": \"dolor pa\",\n      \"message\": \"dolor\",\n      \"details\": \"non magna veniam\"\n    }\n  ]\n}"
    },
    {
      "name": "Temporary overloading or maintenance of the server.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId"
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format."
            }
          ]
        }
      },
      "status": "Service Unavailable",
      "code": 503,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "incididunt ea cillum",
          "description": "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."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "incididunt ea cillum",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"payload\": {\n    \"AmazonOrderId\": \"in consequat\",\n    \"LastUpdateDate\": \"cillum Ut inci\",\n    \"OrderStatus\": \"InvoiceUnconfirmed\",\n    \"PurchaseDate\": \"Excepteur Lorem\",\n    \"SellerOrderId\": \"ut dolor Ut pariatur\",\n    \"FulfillmentChannel\": \"AFN\",\n    \"SalesChannel\": \"cupidatat amet nulla id sed\",\n    \"OrderChannel\": \"occaecat esse adipisicing\",\n    \"ShipServiceLevel\": \"cillum sunt\",\n    \"OrderTotal\": {\n      \"CurrencyCode\": \"incididunt mollit officia ad proident\",\n      \"Amount\": \"pariatur\"\n    },\n    \"NumberOfItemsShipped\": -25194452,\n    \"NumberOfItemsUnshipped\": 41616242,\n    \"PaymentExecutionDetail\": [\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"culpa dolor dolore adipisicing ut\"\n      },\n      {\n        \"Payment\": {\n          \"CurrencyCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Amount\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"PaymentMethod\": \"ullamco Lorem\"\n      }\n    ],\n    \"PaymentMethod\": \"Other\",\n    \"PaymentMethodDetails\": [\n      \"ea deserunt eu et\",\n      \"ipsum\"\n    ],\n    \"MarketplaceId\": \"aliqua proident\",\n    \"ShipmentServiceLevelCategory\": \"esse officia\",\n    \"EasyShipShipmentStatus\": \"ReturnedToSeller\",\n    \"CbaDisplayableShippingLabel\": \"ut Lorem incididunt sit esse\",\n    \"OrderType\": \"LongLeadTimeOrder\",\n    \"EarliestShipDate\": \"tempor proident\",\n    \"LatestShipDate\": \"sit officia eu\",\n    \"EarliestDeliveryDate\": \"occaecat\",\n    \"LatestDeliveryDate\": \"deserunt\",\n    \"IsBusinessOrder\": true,\n    \"IsPrime\": false,\n    \"IsPremiumOrder\": false,\n    \"IsGlobalExpressEnabled\": false,\n    \"ReplacedOrderId\": \"dolore dolore v\",\n    \"IsReplacementOrder\": true,\n    \"PromiseResponseDueDate\": \"dolor proident eiusmod\",\n    \"IsEstimatedShipDateSet\": false,\n    \"IsSoldByAB\": true,\n    \"IsIBA\": false,\n    \"DefaultShipFromLocationAddress\": {\n      \"Name\": \"cupidatat id\",\n      \"AddressLine1\": \"qui mollit irure\",\n      \"AddressLine2\": \"cupidatat Excepteur proident\",\n      \"AddressLine3\": \"id incididunt minim ullamco\",\n      \"City\": \"Lorem ullamco ea\",\n      \"County\": \"fugiat veniam anim laborum\",\n      \"District\": \"Excepteur veniam occaecat non elit\",\n      \"StateOrRegion\": \"irure exercitati\",\n      \"Municipality\": \"min\",\n      \"PostalCode\": \"anim in ullamco\",\n      \"CountryCode\": \"consequat proident veniam\",\n      \"Phone\": \"\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInvoicePreference\": \"BUSINESS\",\n    \"BuyerTaxInformation\": {\n      \"BuyerLegalCompanyName\": \"commodo\",\n      \"BuyerBusinessAddress\": \"mollit est\",\n      \"BuyerTaxRegistrationId\": \"elit id\",\n      \"BuyerTaxOffice\": \"nostrud commodo\"\n    },\n    \"FulfillmentInstruction\": {\n      \"FulfillmentSupplySourceId\": \"voluptate\"\n    },\n    \"IsISPU\": true,\n    \"IsAccessPointOrder\": true,\n    \"MarketplaceTaxInfo\": {\n      \"TaxClassifications\": [\n        {\n          \"Name\": \"eu minim in\",\n          \"Value\": \"minim ipsum\"\n        },\n        {\n          \"Name\": \"\",\n          \"Value\": \"sint irure exercitation\"\n        }\n      ]\n    },\n    \"SellerDisplayName\": \"ullamco Excepteur nostrud non et\",\n    \"ShippingAddress\": {\n      \"Name\": \"tempor enim ipsum aliquip proident\",\n      \"AddressLine1\": \"cupidatat aliquip consequat sit\",\n      \"AddressLine2\": \"dolor magna\",\n      \"AddressLine3\": \"velit\",\n      \"City\": \"deserunt ex officia reprehenderit\",\n      \"County\": \"non ea mollit\",\n      \"District\": \"anim nostrud exercitation\",\n      \"StateOrRegion\": \"consectetur\",\n      \"Municipality\": \"dolore\",\n      \"PostalCode\": \"do cupidatat sunt Duis\",\n      \"CountryCode\": \"adipisicing consectetur amet voluptate ex\",\n      \"Phone\": \"enim Ut reprehenderit\",\n      \"AddressType\": \"Residential\"\n    },\n    \"BuyerInfo\": {\n      \"BuyerEmail\": \"non nulla fugiat eu qui\",\n      \"BuyerName\": \"ullamco eiusmod\",\n      \"BuyerCounty\": \"deserunt est cillum magna\",\n      \"BuyerTaxInfo\": {\n        \"CompanyLegalName\": \"consectetur nulla est\",\n        \"TaxingRegion\": \"in aliquip et nisi \",\n        \"TaxClassifications\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"PurchaseOrderNumber\": \"aliquip eu dolor adipisicing\"\n    },\n    \"AutomatedShippingSettings\": {\n      \"HasAutomatedShippingSettings\": false,\n      \"AutomatedCarrier\": \"ex Duis dolore\",\n      \"AutomatedShipMethod\": \"reprehenderit Ut adipisicing Excepteur et\"\n    },\n    \"HasRegulatedItems\": false,\n    \"ElectronicInvoiceStatus\": \"NotFound\",\n    \"ItemApprovalTypes\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"ItemApprovalStatus\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"errors\": [\n    {\n      \"code\": \"mollit Lorem\",\n      \"message\": \"ea sed officia in\",\n      \"details\": \"ut veniam\"\n    },\n    {\n      \"code\": \"dolor pa\",\n      \"message\": \"dolor\",\n      \"details\": \"non magna veniam\"\n    }\n  ]\n}"
    }
  ]
}