Chilkat Online Tools

delphiDll / Selling Partner API for Orders / get Orders

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
queryParams: HCkJsonObject;
resp: HCkHttpResponse;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
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;
IsAccessPointOrder: Boolean;
IsGlobalExpressEnabled: Boolean;
IsPremiumOrder: Boolean;
IsSoldByAB: Boolean;
IsIBA: Boolean;
Name: PWideChar;
AddressLine1: PWideChar;
City: PWideChar;
StateOrRegion: PWideChar;
PostalCode: PWideChar;
CountryCode: PWideChar;
BuyerEmail: PWideChar;
BuyerName: PWideChar;
CompanyLegalName: PWideChar;
PurchaseOrderNumber: PWideChar;
j: Integer;
count_j: Integer;
strVal: PWideChar;
NextToken: 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();

queryParams := CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,'CreatedAfter','incididunt ea cillum');
CkJsonObject_UpdateString(queryParams,'CreatedBefore','incididunt ea cillum');
CkJsonObject_UpdateString(queryParams,'LastUpdatedAfter','incididunt ea cillum');
CkJsonObject_UpdateString(queryParams,'LastUpdatedBefore','incididunt ea cillum');
CkJsonObject_UpdateString(queryParams,'OrderStatuses','exercitation aliqua minim,ut adipisicing irure quis');
CkJsonObject_UpdateString(queryParams,'MarketplaceIds','pariatur cupidatat elit,e');
CkJsonObject_UpdateString(queryParams,'FulfillmentChannels','exercitation aliqua minim,ut adipisicing irure quis');
CkJsonObject_UpdateString(queryParams,'PaymentMethods','exercitation aliqua minim,ut adipisicing irure quis');
CkJsonObject_UpdateString(queryParams,'BuyerEmail','incididunt ea cillum');
CkJsonObject_UpdateString(queryParams,'SellerOrderId','incididunt ea cillum');
CkJsonObject_UpdateInt(queryParams,'MaxResultsPerPage',-48050911);
CkJsonObject_UpdateString(queryParams,'EasyShipShipmentStatuses','exercitation aliqua minim,ut adipisicing irure quis');
CkJsonObject_UpdateString(queryParams,'ElectronicInvoiceStatuses','exercitation aliqua minim,ut adipisicing irure quis');
CkJsonObject_UpdateString(queryParams,'NextToken','incididunt ea cillum');
CkJsonObject_UpdateString(queryParams,'AmazonOrderIds','pariatur cupidatat elit,e');
CkJsonObject_UpdateString(queryParams,'ActualFulfillmentSupplySourceId','incididunt ea cillum');
CkJsonObject_UpdateString(queryParams,'IsISPU','true');
CkJsonObject_UpdateString(queryParams,'StoreChainStoreId','incididunt ea cillum');
CkJsonObject_UpdateString(queryParams,'ItemApprovalTypes','LEONARDI_APPROVAL');
CkJsonObject_UpdateString(queryParams,'ItemApprovalStatus','PROCESSING_SELLING_PARTNER_APPROVAL,PENDING_AMAZON_APPROVAL');

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

resp := CkHttp_QuickRequestParams(http,'GET','https://sellingpartnerapi-na.amazon.com/orders/v0/orders',queryParams);
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)

// {
//   "payload": {
//     "NextToken": "2YgYW55IGNhcm5hbCBwbGVhc3VyZS4",
//     "Orders": [
//       {
//         "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,
//         "IsAccessPointOrder": false,
//         "IsGlobalExpressEnabled": false,
//         "IsPremiumOrder": false,
//         "IsSoldByAB": false,
//         "IsIBA": 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"
//         }
//       }
//     ]
//   }
// }

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

NextToken := CkJsonObject__stringOf(jResp,'payload.NextToken');
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'payload.Orders');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    AmazonOrderId := CkJsonObject__stringOf(jResp,'payload.Orders[i].AmazonOrderId');
    PurchaseDate := CkJsonObject__stringOf(jResp,'payload.Orders[i].PurchaseDate');
    LastUpdateDate := CkJsonObject__stringOf(jResp,'payload.Orders[i].LastUpdateDate');
    OrderStatus := CkJsonObject__stringOf(jResp,'payload.Orders[i].OrderStatus');
    FulfillmentChannel := CkJsonObject__stringOf(jResp,'payload.Orders[i].FulfillmentChannel');
    NumberOfItemsShipped := CkJsonObject_IntOf(jResp,'payload.Orders[i].NumberOfItemsShipped');
    NumberOfItemsUnshipped := CkJsonObject_IntOf(jResp,'payload.Orders[i].NumberOfItemsUnshipped');
    PaymentMethod := CkJsonObject__stringOf(jResp,'payload.Orders[i].PaymentMethod');
    MarketplaceId := CkJsonObject__stringOf(jResp,'payload.Orders[i].MarketplaceId');
    ShipmentServiceLevelCategory := CkJsonObject__stringOf(jResp,'payload.Orders[i].ShipmentServiceLevelCategory');
    OrderType := CkJsonObject__stringOf(jResp,'payload.Orders[i].OrderType');
    EarliestShipDate := CkJsonObject__stringOf(jResp,'payload.Orders[i].EarliestShipDate');
    LatestShipDate := CkJsonObject__stringOf(jResp,'payload.Orders[i].LatestShipDate');
    IsBusinessOrder := CkJsonObject_BoolOf(jResp,'payload.Orders[i].IsBusinessOrder');
    IsPrime := CkJsonObject_BoolOf(jResp,'payload.Orders[i].IsPrime');
    IsAccessPointOrder := CkJsonObject_BoolOf(jResp,'payload.Orders[i].IsAccessPointOrder');
    IsGlobalExpressEnabled := CkJsonObject_BoolOf(jResp,'payload.Orders[i].IsGlobalExpressEnabled');
    IsPremiumOrder := CkJsonObject_BoolOf(jResp,'payload.Orders[i].IsPremiumOrder');
    IsSoldByAB := CkJsonObject_BoolOf(jResp,'payload.Orders[i].IsSoldByAB');
    IsIBA := CkJsonObject_BoolOf(jResp,'payload.Orders[i].IsIBA');
    Name := CkJsonObject__stringOf(jResp,'payload.Orders[i].ShippingAddress.Name');
    AddressLine1 := CkJsonObject__stringOf(jResp,'payload.Orders[i].ShippingAddress.AddressLine1');
    City := CkJsonObject__stringOf(jResp,'payload.Orders[i].ShippingAddress.City');
    StateOrRegion := CkJsonObject__stringOf(jResp,'payload.Orders[i].ShippingAddress.StateOrRegion');
    PostalCode := CkJsonObject__stringOf(jResp,'payload.Orders[i].ShippingAddress.PostalCode');
    CountryCode := CkJsonObject__stringOf(jResp,'payload.Orders[i].ShippingAddress.CountryCode');
    BuyerEmail := CkJsonObject__stringOf(jResp,'payload.Orders[i].BuyerInfo.BuyerEmail');
    BuyerName := CkJsonObject__stringOf(jResp,'payload.Orders[i].BuyerInfo.BuyerName');
    CompanyLegalName := CkJsonObject__stringOf(jResp,'payload.Orders[i].BuyerInfo.BuyerTaxInfo.CompanyLegalName');
    PurchaseOrderNumber := CkJsonObject__stringOf(jResp,'payload.Orders[i].BuyerInfo.PurchaseOrderNumber');
    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'payload.Orders[i].PaymentMethodDetails');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        strVal := CkJsonObject__stringOf(jResp,'payload.Orders[i].PaymentMethodDetails[j]');
        j := j + 1;
      end;

    i := i + 1;
  end;

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

Curl Command

curl -G -d "CreatedAfter=incididunt%20ea%20cillum"
	-d "CreatedBefore=incididunt%20ea%20cillum"
	-d "LastUpdatedAfter=incididunt%20ea%20cillum"
	-d "LastUpdatedBefore=incididunt%20ea%20cillum"
	-d "OrderStatuses=exercitation%20aliqua%20minim,ut%20adipisicing%20irure%20quis"
	-d "MarketplaceIds=pariatur%20cupidatat%20elit,e"
	-d "FulfillmentChannels=exercitation%20aliqua%20minim,ut%20adipisicing%20irure%20quis"
	-d "PaymentMethods=exercitation%20aliqua%20minim,ut%20adipisicing%20irure%20quis"
	-d "BuyerEmail=incididunt%20ea%20cillum"
	-d "SellerOrderId=incididunt%20ea%20cillum"
	-d "MaxResultsPerPage=-48050911"
	-d "EasyShipShipmentStatuses=exercitation%20aliqua%20minim,ut%20adipisicing%20irure%20quis"
	-d "ElectronicInvoiceStatuses=exercitation%20aliqua%20minim,ut%20adipisicing%20irure%20quis"
	-d "NextToken=incididunt%20ea%20cillum"
	-d "AmazonOrderIds=pariatur%20cupidatat%20elit,e"
	-d "ActualFulfillmentSupplySourceId=incididunt%20ea%20cillum"
	-d "IsISPU=true"
	-d "StoreChainStoreId=incididunt%20ea%20cillum"
	-d "ItemApprovalTypes=LEONARDI_APPROVAL"
	-d "ItemApprovalStatus=PROCESSING_SELLING_PARTNER_APPROVAL,PENDING_AMAZON_APPROVAL"
	-H "Accept: application/json"
https://sellingpartnerapi-na.amazon.com/orders/v0/orders

Postman Collection Item JSON

{
  "name": "get Orders",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/orders/v0/orders?CreatedAfter=incididunt ea cillum&CreatedBefore=incididunt ea cillum&LastUpdatedAfter=incididunt ea cillum&LastUpdatedBefore=incididunt ea cillum&OrderStatuses=exercitation aliqua minim,ut adipisicing irure quis&MarketplaceIds=pariatur cupidatat elit,e&FulfillmentChannels=exercitation aliqua minim,ut adipisicing irure quis&PaymentMethods=exercitation aliqua minim,ut adipisicing irure quis&BuyerEmail=incididunt ea cillum&SellerOrderId=incididunt ea cillum&MaxResultsPerPage=-48050911&EasyShipShipmentStatuses=exercitation aliqua minim,ut adipisicing irure quis&ElectronicInvoiceStatuses=exercitation aliqua minim,ut adipisicing irure quis&NextToken=incididunt ea cillum&AmazonOrderIds=pariatur cupidatat elit,e&ActualFulfillmentSupplySourceId=incididunt ea cillum&IsISPU=true&StoreChainStoreId=incididunt ea cillum&ItemApprovalTypes=LEONARDI_APPROVAL&ItemApprovalStatus=PROCESSING_SELLING_PARTNER_APPROVAL,PENDING_AMAZON_APPROVAL",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "orders",
        "v0",
        "orders"
      ],
      "query": [
        {
          "key": "CreatedAfter",
          "value": "incididunt ea cillum",
          "description": "A date used for selecting orders created after (or at) a specified time. Only orders placed after the specified time are returned. Either the CreatedAfter parameter or the LastUpdatedAfter parameter is required. Both cannot be empty. The date must be in ISO 8601 format."
        },
        {
          "key": "CreatedBefore",
          "value": "incididunt ea cillum",
          "description": "A date used for selecting orders created before (or at) a specified time. Only orders placed before the specified time are returned. The date must be in ISO 8601 format."
        },
        {
          "key": "LastUpdatedAfter",
          "value": "incididunt ea cillum",
          "description": "A date used for selecting orders that were last updated after (or at) a specified time. An update is defined as any change in order status, including the creation of a new order. Includes updates made by Amazon and by the seller. The date must be in ISO 8601 format."
        },
        {
          "key": "LastUpdatedBefore",
          "value": "incididunt ea cillum",
          "description": "A date used for selecting orders that were last updated before (or at) a specified time. An update is defined as any change in order status, including the creation of a new order. Includes updates made by Amazon and by the seller. The date must be in ISO 8601 format."
        },
        {
          "key": "OrderStatuses",
          "value": "exercitation aliqua minim,ut adipisicing irure quis",
          "description": "A list of `OrderStatus` values used to filter the results.\n\n**Possible values:**\n- `PendingAvailability` (This status is available for pre-orders only. The order has been placed, payment has not been authorized, and the release date of the item is in the future.)\n- `Pending` (The order has been placed but payment has not been authorized.)\n- `Unshipped` (Payment has been authorized and the order is ready for shipment, but no items in the order have been shipped.)\n- `PartiallyShipped` (One or more, but not all, items in the order have been shipped.)\n- `Shipped` (All items in the order have been shipped.)\n- `InvoiceUnconfirmed` (All items in the order have been shipped. The seller has not yet given confirmation to Amazon that the invoice has been shipped to the buyer.)\n- `Canceled` (The order has been canceled.)\n- `Unfulfillable` (The order cannot be fulfilled. This state applies only to Multi-Channel Fulfillment orders.)"
        },
        {
          "key": "MarketplaceIds",
          "value": "pariatur cupidatat elit,e",
          "description": "(Required) A list of MarketplaceId values. Used to select orders that were placed in the specified marketplaces.\n\nSee the [Selling Partner API Developer Guide](doc:marketplace-ids) for a complete list of marketplaceId values."
        },
        {
          "key": "FulfillmentChannels",
          "value": "exercitation aliqua minim,ut adipisicing irure quis",
          "description": "A list that indicates how an order was fulfilled. Filters the results by fulfillment channel. Possible values: AFN (Fulfillment by Amazon); MFN (Fulfilled by the seller)."
        },
        {
          "key": "PaymentMethods",
          "value": "exercitation aliqua minim,ut adipisicing irure quis",
          "description": "A list of payment method values. Used to select orders paid using the specified payment methods. Possible values: COD (Cash on delivery); CVS (Convenience store payment); Other (Any payment method other than COD or CVS)."
        },
        {
          "key": "BuyerEmail",
          "value": "incididunt ea cillum",
          "description": "The email address of a buyer. Used to select orders that contain the specified email address."
        },
        {
          "key": "SellerOrderId",
          "value": "incididunt ea cillum",
          "description": "An order identifier that is specified by the seller. Used to select only the orders that match the order identifier. If SellerOrderId is specified, then FulfillmentChannels, OrderStatuses, PaymentMethod, LastUpdatedAfter, LastUpdatedBefore, and BuyerEmail cannot be specified."
        },
        {
          "key": "MaxResultsPerPage",
          "value": "-48050911",
          "description": "A number that indicates the maximum number of orders that can be returned per page. Value must be 1 - 100. Default 100."
        },
        {
          "key": "EasyShipShipmentStatuses",
          "value": "exercitation aliqua minim,ut adipisicing irure quis",
          "description": "A list of `EasyShipShipmentStatus` values. Used to select Easy Ship orders with statuses that match the specified values. If `EasyShipShipmentStatus` is specified, only Amazon Easy Ship orders are returned.\n\n**Possible values:**\n- `PendingSchedule` (The package is awaiting the schedule for pick-up.)\n- `PendingPickUp` (Amazon has not yet picked up the package from the seller.)\n- `PendingDropOff` (The seller will deliver the package to the carrier.)\n- `LabelCanceled` (The seller canceled the pickup.)\n- `PickedUp` (Amazon has picked up the package from the seller.)\n- `DroppedOff` (The package is delivered to the carrier by the seller.)\n- `AtOriginFC` (The packaged is at the origin fulfillment center.)\n- `AtDestinationFC` (The package is at the destination fulfillment center.)\n- `Delivered` (The package has been delivered.)\n- `RejectedByBuyer` (The package has been rejected by the buyer.)\n- `Undeliverable` (The package cannot be delivered.)\n- `ReturningToSeller` (The package was not delivered and is being returned to the seller.)\n- `ReturnedToSeller` (The package was not delivered and was returned to the seller.)\n- `Lost` (The package is lost.)\n- `OutForDelivery` (The package is out for delivery.)\n- `Damaged` (The package was damaged by the carrier.)"
        },
        {
          "key": "ElectronicInvoiceStatuses",
          "value": "exercitation aliqua minim,ut adipisicing irure quis",
          "description": "A list of `ElectronicInvoiceStatus` values. Used to select orders with electronic invoice statuses that match the specified values.\n\n**Possible values:**\n- `NotRequired` (Electronic invoice submission is not required for this order.)\n- `NotFound` (The electronic invoice was not submitted for this order.)\n- `Processing` (The electronic invoice is being processed for this order.)\n- `Errored` (The last submitted electronic invoice was rejected for this order.)\n- `Accepted` (The last submitted electronic invoice was submitted and accepted.)"
        },
        {
          "key": "NextToken",
          "value": "incididunt ea cillum",
          "description": "A string token returned in the response of your previous request."
        },
        {
          "key": "AmazonOrderIds",
          "value": "pariatur cupidatat elit,e",
          "description": "A list of AmazonOrderId values. An AmazonOrderId is an Amazon-defined order identifier, in 3-7-7 format."
        },
        {
          "key": "ActualFulfillmentSupplySourceId",
          "value": "incididunt ea cillum",
          "description": "Denotes the recommended sourceId where the order should be fulfilled from."
        },
        {
          "key": "IsISPU",
          "value": "true",
          "description": "When true, this order is marked to be picked up from a store rather than delivered."
        },
        {
          "key": "StoreChainStoreId",
          "value": "incididunt ea cillum",
          "description": "The store chain store identifier. Linked to a specific store in a store chain."
        },
        {
          "key": "ItemApprovalTypes",
          "value": "LEONARDI_APPROVAL",
          "description": "When set, only return orders that contain items which approval type is contained in the specified approval types."
        },
        {
          "key": "ItemApprovalStatus",
          "value": "PROCESSING_SELLING_PARTNER_APPROVAL,PENDING_AMAZON_APPROVAL",
          "description": "When set, only return orders that contain items which approval status is contained in the specified approval status."
        }
      ]
    },
    "description": "Returns orders created or updated during the time frame indicated by the specified parameters. You can also apply a range of filtering criteria to narrow the list of orders returned. If NextToken is present, that will be used to retrieve the orders instead of other criteria.\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?CreatedAfter=incididunt ea cillum&CreatedBefore=incididunt ea cillum&LastUpdatedAfter=incididunt ea cillum&LastUpdatedBefore=incididunt ea cillum&OrderStatuses=pariatur cupidatat elit,e&MarketplaceIds=pariatur cupidatat elit,e&FulfillmentChannels=pariatur cupidatat elit,e&PaymentMethods=pariatur cupidatat elit,e&BuyerEmail=incididunt ea cillum&SellerOrderId=incididunt ea cillum&MaxResultsPerPage=-48050911&EasyShipShipmentStatuses=pariatur cupidatat elit,e&ElectronicInvoiceStatuses=pariatur cupidatat elit,e&NextToken=incididunt ea cillum&AmazonOrderIds=pariatur cupidatat elit,e&ActualFulfillmentSupplySourceId=incididunt ea cillum&IsISPU=true&StoreChainStoreId=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders"
          ],
          "query": [
            {
              "key": "CreatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "CreatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "OrderStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "MarketplaceIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "FulfillmentChannels",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "PaymentMethods",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "BuyerEmail",
              "value": "incididunt ea cillum"
            },
            {
              "key": "SellerOrderId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "MaxResultsPerPage",
              "value": "-48050911"
            },
            {
              "key": "EasyShipShipmentStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ElectronicInvoiceStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "AmazonOrderIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ActualFulfillmentSupplySourceId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "IsISPU",
              "value": "true"
            },
            {
              "key": "StoreChainStoreId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ]
        }
      },
      "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    \"NextToken\": \"2YgYW55IGNhcm5hbCBwbGVhc3VyZS4\",\n    \"Orders\": [\n      {\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        \"IsAccessPointOrder\": false,\n        \"IsGlobalExpressEnabled\": false,\n        \"IsPremiumOrder\": false,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": 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      }\n    ]\n  }\n}"
    },
    {
      "name": "Request has missing or invalid parameters and cannot be parsed.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders?CreatedAfter=incididunt ea cillum&CreatedBefore=incididunt ea cillum&LastUpdatedAfter=incididunt ea cillum&LastUpdatedBefore=incididunt ea cillum&OrderStatuses=pariatur cupidatat elit,e&MarketplaceIds=pariatur cupidatat elit,e&FulfillmentChannels=pariatur cupidatat elit,e&PaymentMethods=pariatur cupidatat elit,e&BuyerEmail=incididunt ea cillum&SellerOrderId=incididunt ea cillum&MaxResultsPerPage=-48050911&EasyShipShipmentStatuses=pariatur cupidatat elit,e&ElectronicInvoiceStatuses=pariatur cupidatat elit,e&NextToken=incididunt ea cillum&AmazonOrderIds=pariatur cupidatat elit,e&ActualFulfillmentSupplySourceId=incididunt ea cillum&IsISPU=true&StoreChainStoreId=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders"
          ],
          "query": [
            {
              "key": "CreatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "CreatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "OrderStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "MarketplaceIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "FulfillmentChannels",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "PaymentMethods",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "BuyerEmail",
              "value": "incididunt ea cillum"
            },
            {
              "key": "SellerOrderId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "MaxResultsPerPage",
              "value": "-48050911"
            },
            {
              "key": "EasyShipShipmentStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ElectronicInvoiceStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "AmazonOrderIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ActualFulfillmentSupplySourceId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "IsISPU",
              "value": "true"
            },
            {
              "key": "StoreChainStoreId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ]
        }
      },
      "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    \"Orders\": [\n      {\n        \"AmazonOrderId\": \"ea dolore nostrud officia dolor\",\n        \"LastUpdateDate\": \"officia Excepteur ea occaecat\",\n        \"OrderStatus\": \"Unshipped\",\n        \"PurchaseDate\": \"minim tempor dolor mollit ut\",\n        \"SellerOrderId\": \"ex Excepteur\",\n        \"FulfillmentChannel\": \"AFN\",\n        \"SalesChannel\": \"in adipisicing ut\",\n        \"OrderChannel\": \"consequat\",\n        \"ShipServiceLevel\": \"dolor cupidatat\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": 22831017,\n        \"NumberOfItemsUnshipped\": 40012344,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"COD\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"velit aliqua ad non\",\n        \"ShipmentServiceLevelCategory\": \"minim do proident\",\n        \"EasyShipShipmentStatus\": \"Damaged\",\n        \"CbaDisplayableShippingLabel\": \"id laboris\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"qui Duis\",\n        \"LatestShipDate\": \"esse\",\n        \"EarliestDeliveryDate\": \"culpa laboris in reprehenderit voluptate\",\n        \"LatestDeliveryDate\": \"ipsum tempor occaecat proident quis\",\n        \"IsBusinessOrder\": true,\n        \"IsPrime\": true,\n        \"IsPremiumOrder\": true,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"consectetur exercitation\",\n        \"IsReplacementOrder\": true,\n        \"PromiseResponseDueDate\": \"sit amet velit Duis esse\",\n        \"IsEstimatedShipDateSet\": false,\n        \"IsSoldByAB\": true,\n        \"IsIBA\": false,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"INDIVIDUAL\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": false,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"anim nostrud\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"Processing\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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      {\n        \"AmazonOrderId\": \"culpa quis\",\n        \"LastUpdateDate\": \"non cillum commodo Ut\",\n        \"OrderStatus\": \"InvoiceUnconfirmed\",\n        \"PurchaseDate\": \"deserunt reprehenderit nulla\",\n        \"SellerOrderId\": \"officia irure\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"cupidatat consectetur\",\n        \"OrderChannel\": \"anim elit est in\",\n        \"ShipServiceLevel\": \"in commodo velit mollit\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": -43101076,\n        \"NumberOfItemsUnshipped\": -61220425,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"Other\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"i\",\n        \"ShipmentServiceLevelCategory\": \"ipsum et aute\",\n        \"EasyShipShipmentStatus\": \"LabelCanceled\",\n        \"CbaDisplayableShippingLabel\": \"aute ut nisi id\",\n        \"OrderType\": \"LongLeadTimeOrder\",\n        \"EarliestShipDate\": \"qui incididunt\",\n        \"LatestShipDate\": \"labore mollit ad\",\n        \"EarliestDeliveryDate\": \"consequat sit sint\",\n        \"LatestDeliveryDate\": \"sunt elit\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": true,\n        \"IsPremiumOrder\": true,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"f\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"ea cillum aliquip laboris\",\n        \"IsEstimatedShipDateSet\": false,\n        \"IsSoldByAB\": true,\n        \"IsIBA\": false,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"BUSINESS\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": true,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"exercitation enim officia\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": true,\n        \"ElectronicInvoiceStatus\": \"Accepted\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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    ],\n    \"NextToken\": \"fugiat tempor\",\n    \"LastUpdatedBefore\": \"non consectetur in incididunt ad\",\n    \"CreatedBefore\": \"consequat ut\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"sunt consectetur do veniam occaecat\",\n      \"message\": \"aute nisi\",\n      \"details\": \"elit minim reprehenderit eu\"\n    },\n    {\n      \"code\": \"irure enim elit est\",\n      \"message\": \"elit cillum\",\n      \"details\": \"veniam nisi qui\"\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?CreatedAfter=incididunt ea cillum&CreatedBefore=incididunt ea cillum&LastUpdatedAfter=incididunt ea cillum&LastUpdatedBefore=incididunt ea cillum&OrderStatuses=pariatur cupidatat elit,e&MarketplaceIds=pariatur cupidatat elit,e&FulfillmentChannels=pariatur cupidatat elit,e&PaymentMethods=pariatur cupidatat elit,e&BuyerEmail=incididunt ea cillum&SellerOrderId=incididunt ea cillum&MaxResultsPerPage=-48050911&EasyShipShipmentStatuses=pariatur cupidatat elit,e&ElectronicInvoiceStatuses=pariatur cupidatat elit,e&NextToken=incididunt ea cillum&AmazonOrderIds=pariatur cupidatat elit,e&ActualFulfillmentSupplySourceId=incididunt ea cillum&IsISPU=true&StoreChainStoreId=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders"
          ],
          "query": [
            {
              "key": "CreatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "CreatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "OrderStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "MarketplaceIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "FulfillmentChannels",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "PaymentMethods",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "BuyerEmail",
              "value": "incididunt ea cillum"
            },
            {
              "key": "SellerOrderId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "MaxResultsPerPage",
              "value": "-48050911"
            },
            {
              "key": "EasyShipShipmentStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ElectronicInvoiceStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "AmazonOrderIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ActualFulfillmentSupplySourceId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "IsISPU",
              "value": "true"
            },
            {
              "key": "StoreChainStoreId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ]
        }
      },
      "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    \"Orders\": [\n      {\n        \"AmazonOrderId\": \"laborum cillum\",\n        \"LastUpdateDate\": \"ut culpa\",\n        \"OrderStatus\": \"Unshipped\",\n        \"PurchaseDate\": \"incididunt id labore elit et\",\n        \"SellerOrderId\": \"irure in eu sit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"Lorem commodo quis\",\n        \"OrderChannel\": \"incididunt dolor com\",\n        \"ShipServiceLevel\": \"tempor voluptate\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": 96053224,\n        \"NumberOfItemsUnshipped\": 1088537,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"COD\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"commodo reprehenderit consequat enim Excepteur\",\n        \"ShipmentServiceLevelCategory\": \"anim aliquip proident\",\n        \"EasyShipShipmentStatus\": \"DroppedOff\",\n        \"CbaDisplayableShippingLabel\": \"voluptate nulla eu\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"veniam\",\n        \"LatestShipDate\": \"anim minim\",\n        \"EarliestDeliveryDate\": \"eiusmod fugiat irure\",\n        \"LatestDeliveryDate\": \"deserunt id mollit in\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"sunt sit fugiat\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint reprehenderit\",\n        \"IsEstimatedShipDateSet\": false,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": true,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"INDIVIDUAL\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"Lorem exercitation nostrud\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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      {\n        \"AmazonOrderId\": \"deserunt tempor dolore amet anim\",\n        \"LastUpdateDate\": \"cillum eiusmod\",\n        \"OrderStatus\": \"InvoiceUnconfirmed\",\n        \"PurchaseDate\": \"commodo ea deserunt exercitation pariatur\",\n        \"SellerOrderId\": \"mollit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"sint adipisicing deserunt\",\n        \"OrderChannel\": \"elit voluptate Ut\",\n        \"ShipServiceLevel\": \"elit esse\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": -13833105,\n        \"NumberOfItemsUnshipped\": 12873613,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"Other\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"consequat amet voluptate sint\",\n        \"ShipmentServiceLevelCategory\": \"velit laborum do\",\n        \"EasyShipShipmentStatus\": \"PendingSchedule\",\n        \"CbaDisplayableShippingLabel\": \"quis in officia dolore\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"cupidatat\",\n        \"LatestShipDate\": \"ex qui elit\",\n        \"EarliestDeliveryDate\": \"nostrud est aliqua\",\n        \"LatestDeliveryDate\": \"dolore et veli\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"veniam magna culpa\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint Excepteur\",\n        \"IsEstimatedShipDateSet\": true,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": false,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"BUSINESS\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"nulla id commodo eu pariatur\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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    ],\n    \"NextToken\": \"mollit commodo ut laborum\",\n    \"LastUpdatedBefore\": \"Ut labore\",\n    \"CreatedBefore\": \"nostrud\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"cillum anim\",\n      \"message\": \"occaecat in tempor Lorem\",\n      \"details\": \"est magna nulla\"\n    },\n    {\n      \"code\": \"amet officia\",\n      \"message\": \"in nostrud velit\",\n      \"details\": \"adipisicing deserunt incididunt tempor\"\n    }\n  ]\n}"
    },
    {
      "name": "The resource specified does not exist.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders?CreatedAfter=incididunt ea cillum&CreatedBefore=incididunt ea cillum&LastUpdatedAfter=incididunt ea cillum&LastUpdatedBefore=incididunt ea cillum&OrderStatuses=pariatur cupidatat elit,e&MarketplaceIds=pariatur cupidatat elit,e&FulfillmentChannels=pariatur cupidatat elit,e&PaymentMethods=pariatur cupidatat elit,e&BuyerEmail=incididunt ea cillum&SellerOrderId=incididunt ea cillum&MaxResultsPerPage=-48050911&EasyShipShipmentStatuses=pariatur cupidatat elit,e&ElectronicInvoiceStatuses=pariatur cupidatat elit,e&NextToken=incididunt ea cillum&AmazonOrderIds=pariatur cupidatat elit,e&ActualFulfillmentSupplySourceId=incididunt ea cillum&IsISPU=true&StoreChainStoreId=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders"
          ],
          "query": [
            {
              "key": "CreatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "CreatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "OrderStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "MarketplaceIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "FulfillmentChannels",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "PaymentMethods",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "BuyerEmail",
              "value": "incididunt ea cillum"
            },
            {
              "key": "SellerOrderId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "MaxResultsPerPage",
              "value": "-48050911"
            },
            {
              "key": "EasyShipShipmentStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ElectronicInvoiceStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "AmazonOrderIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ActualFulfillmentSupplySourceId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "IsISPU",
              "value": "true"
            },
            {
              "key": "StoreChainStoreId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ]
        }
      },
      "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    \"Orders\": [\n      {\n        \"AmazonOrderId\": \"laborum cillum\",\n        \"LastUpdateDate\": \"ut culpa\",\n        \"OrderStatus\": \"Unshipped\",\n        \"PurchaseDate\": \"incididunt id labore elit et\",\n        \"SellerOrderId\": \"irure in eu sit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"Lorem commodo quis\",\n        \"OrderChannel\": \"incididunt dolor com\",\n        \"ShipServiceLevel\": \"tempor voluptate\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": 96053224,\n        \"NumberOfItemsUnshipped\": 1088537,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"COD\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"commodo reprehenderit consequat enim Excepteur\",\n        \"ShipmentServiceLevelCategory\": \"anim aliquip proident\",\n        \"EasyShipShipmentStatus\": \"DroppedOff\",\n        \"CbaDisplayableShippingLabel\": \"voluptate nulla eu\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"veniam\",\n        \"LatestShipDate\": \"anim minim\",\n        \"EarliestDeliveryDate\": \"eiusmod fugiat irure\",\n        \"LatestDeliveryDate\": \"deserunt id mollit in\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"sunt sit fugiat\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint reprehenderit\",\n        \"IsEstimatedShipDateSet\": false,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": true,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"INDIVIDUAL\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"Lorem exercitation nostrud\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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      {\n        \"AmazonOrderId\": \"deserunt tempor dolore amet anim\",\n        \"LastUpdateDate\": \"cillum eiusmod\",\n        \"OrderStatus\": \"InvoiceUnconfirmed\",\n        \"PurchaseDate\": \"commodo ea deserunt exercitation pariatur\",\n        \"SellerOrderId\": \"mollit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"sint adipisicing deserunt\",\n        \"OrderChannel\": \"elit voluptate Ut\",\n        \"ShipServiceLevel\": \"elit esse\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": -13833105,\n        \"NumberOfItemsUnshipped\": 12873613,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"Other\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"consequat amet voluptate sint\",\n        \"ShipmentServiceLevelCategory\": \"velit laborum do\",\n        \"EasyShipShipmentStatus\": \"PendingSchedule\",\n        \"CbaDisplayableShippingLabel\": \"quis in officia dolore\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"cupidatat\",\n        \"LatestShipDate\": \"ex qui elit\",\n        \"EarliestDeliveryDate\": \"nostrud est aliqua\",\n        \"LatestDeliveryDate\": \"dolore et veli\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"veniam magna culpa\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint Excepteur\",\n        \"IsEstimatedShipDateSet\": true,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": false,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"BUSINESS\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"nulla id commodo eu pariatur\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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    ],\n    \"NextToken\": \"mollit commodo ut laborum\",\n    \"LastUpdatedBefore\": \"Ut labore\",\n    \"CreatedBefore\": \"nostrud\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"cillum anim\",\n      \"message\": \"occaecat in tempor Lorem\",\n      \"details\": \"est magna nulla\"\n    },\n    {\n      \"code\": \"amet officia\",\n      \"message\": \"in nostrud velit\",\n      \"details\": \"adipisicing deserunt incididunt tempor\"\n    }\n  ]\n}"
    },
    {
      "name": "The frequency of requests was greater than allowed.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders?CreatedAfter=incididunt ea cillum&CreatedBefore=incididunt ea cillum&LastUpdatedAfter=incididunt ea cillum&LastUpdatedBefore=incididunt ea cillum&OrderStatuses=pariatur cupidatat elit,e&MarketplaceIds=pariatur cupidatat elit,e&FulfillmentChannels=pariatur cupidatat elit,e&PaymentMethods=pariatur cupidatat elit,e&BuyerEmail=incididunt ea cillum&SellerOrderId=incididunt ea cillum&MaxResultsPerPage=-48050911&EasyShipShipmentStatuses=pariatur cupidatat elit,e&ElectronicInvoiceStatuses=pariatur cupidatat elit,e&NextToken=incididunt ea cillum&AmazonOrderIds=pariatur cupidatat elit,e&ActualFulfillmentSupplySourceId=incididunt ea cillum&IsISPU=true&StoreChainStoreId=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders"
          ],
          "query": [
            {
              "key": "CreatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "CreatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "OrderStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "MarketplaceIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "FulfillmentChannels",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "PaymentMethods",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "BuyerEmail",
              "value": "incididunt ea cillum"
            },
            {
              "key": "SellerOrderId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "MaxResultsPerPage",
              "value": "-48050911"
            },
            {
              "key": "EasyShipShipmentStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ElectronicInvoiceStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "AmazonOrderIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ActualFulfillmentSupplySourceId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "IsISPU",
              "value": "true"
            },
            {
              "key": "StoreChainStoreId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ]
        }
      },
      "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    \"Orders\": [\n      {\n        \"AmazonOrderId\": \"laborum cillum\",\n        \"LastUpdateDate\": \"ut culpa\",\n        \"OrderStatus\": \"Unshipped\",\n        \"PurchaseDate\": \"incididunt id labore elit et\",\n        \"SellerOrderId\": \"irure in eu sit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"Lorem commodo quis\",\n        \"OrderChannel\": \"incididunt dolor com\",\n        \"ShipServiceLevel\": \"tempor voluptate\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": 96053224,\n        \"NumberOfItemsUnshipped\": 1088537,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"COD\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"commodo reprehenderit consequat enim Excepteur\",\n        \"ShipmentServiceLevelCategory\": \"anim aliquip proident\",\n        \"EasyShipShipmentStatus\": \"DroppedOff\",\n        \"CbaDisplayableShippingLabel\": \"voluptate nulla eu\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"veniam\",\n        \"LatestShipDate\": \"anim minim\",\n        \"EarliestDeliveryDate\": \"eiusmod fugiat irure\",\n        \"LatestDeliveryDate\": \"deserunt id mollit in\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"sunt sit fugiat\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint reprehenderit\",\n        \"IsEstimatedShipDateSet\": false,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": true,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"INDIVIDUAL\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"Lorem exercitation nostrud\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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      {\n        \"AmazonOrderId\": \"deserunt tempor dolore amet anim\",\n        \"LastUpdateDate\": \"cillum eiusmod\",\n        \"OrderStatus\": \"InvoiceUnconfirmed\",\n        \"PurchaseDate\": \"commodo ea deserunt exercitation pariatur\",\n        \"SellerOrderId\": \"mollit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"sint adipisicing deserunt\",\n        \"OrderChannel\": \"elit voluptate Ut\",\n        \"ShipServiceLevel\": \"elit esse\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": -13833105,\n        \"NumberOfItemsUnshipped\": 12873613,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"Other\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"consequat amet voluptate sint\",\n        \"ShipmentServiceLevelCategory\": \"velit laborum do\",\n        \"EasyShipShipmentStatus\": \"PendingSchedule\",\n        \"CbaDisplayableShippingLabel\": \"quis in officia dolore\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"cupidatat\",\n        \"LatestShipDate\": \"ex qui elit\",\n        \"EarliestDeliveryDate\": \"nostrud est aliqua\",\n        \"LatestDeliveryDate\": \"dolore et veli\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"veniam magna culpa\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint Excepteur\",\n        \"IsEstimatedShipDateSet\": true,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": false,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"BUSINESS\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"nulla id commodo eu pariatur\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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    ],\n    \"NextToken\": \"mollit commodo ut laborum\",\n    \"LastUpdatedBefore\": \"Ut labore\",\n    \"CreatedBefore\": \"nostrud\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"cillum anim\",\n      \"message\": \"occaecat in tempor Lorem\",\n      \"details\": \"est magna nulla\"\n    },\n    {\n      \"code\": \"amet officia\",\n      \"message\": \"in nostrud velit\",\n      \"details\": \"adipisicing deserunt incididunt tempor\"\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?CreatedAfter=incididunt ea cillum&CreatedBefore=incididunt ea cillum&LastUpdatedAfter=incididunt ea cillum&LastUpdatedBefore=incididunt ea cillum&OrderStatuses=pariatur cupidatat elit,e&MarketplaceIds=pariatur cupidatat elit,e&FulfillmentChannels=pariatur cupidatat elit,e&PaymentMethods=pariatur cupidatat elit,e&BuyerEmail=incididunt ea cillum&SellerOrderId=incididunt ea cillum&MaxResultsPerPage=-48050911&EasyShipShipmentStatuses=pariatur cupidatat elit,e&ElectronicInvoiceStatuses=pariatur cupidatat elit,e&NextToken=incididunt ea cillum&AmazonOrderIds=pariatur cupidatat elit,e&ActualFulfillmentSupplySourceId=incididunt ea cillum&IsISPU=true&StoreChainStoreId=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders"
          ],
          "query": [
            {
              "key": "CreatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "CreatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "OrderStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "MarketplaceIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "FulfillmentChannels",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "PaymentMethods",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "BuyerEmail",
              "value": "incididunt ea cillum"
            },
            {
              "key": "SellerOrderId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "MaxResultsPerPage",
              "value": "-48050911"
            },
            {
              "key": "EasyShipShipmentStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ElectronicInvoiceStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "AmazonOrderIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ActualFulfillmentSupplySourceId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "IsISPU",
              "value": "true"
            },
            {
              "key": "StoreChainStoreId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ]
        }
      },
      "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    \"Orders\": [\n      {\n        \"AmazonOrderId\": \"laborum cillum\",\n        \"LastUpdateDate\": \"ut culpa\",\n        \"OrderStatus\": \"Unshipped\",\n        \"PurchaseDate\": \"incididunt id labore elit et\",\n        \"SellerOrderId\": \"irure in eu sit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"Lorem commodo quis\",\n        \"OrderChannel\": \"incididunt dolor com\",\n        \"ShipServiceLevel\": \"tempor voluptate\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": 96053224,\n        \"NumberOfItemsUnshipped\": 1088537,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"COD\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"commodo reprehenderit consequat enim Excepteur\",\n        \"ShipmentServiceLevelCategory\": \"anim aliquip proident\",\n        \"EasyShipShipmentStatus\": \"DroppedOff\",\n        \"CbaDisplayableShippingLabel\": \"voluptate nulla eu\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"veniam\",\n        \"LatestShipDate\": \"anim minim\",\n        \"EarliestDeliveryDate\": \"eiusmod fugiat irure\",\n        \"LatestDeliveryDate\": \"deserunt id mollit in\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"sunt sit fugiat\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint reprehenderit\",\n        \"IsEstimatedShipDateSet\": false,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": true,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"INDIVIDUAL\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"Lorem exercitation nostrud\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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      {\n        \"AmazonOrderId\": \"deserunt tempor dolore amet anim\",\n        \"LastUpdateDate\": \"cillum eiusmod\",\n        \"OrderStatus\": \"InvoiceUnconfirmed\",\n        \"PurchaseDate\": \"commodo ea deserunt exercitation pariatur\",\n        \"SellerOrderId\": \"mollit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"sint adipisicing deserunt\",\n        \"OrderChannel\": \"elit voluptate Ut\",\n        \"ShipServiceLevel\": \"elit esse\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": -13833105,\n        \"NumberOfItemsUnshipped\": 12873613,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"Other\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"consequat amet voluptate sint\",\n        \"ShipmentServiceLevelCategory\": \"velit laborum do\",\n        \"EasyShipShipmentStatus\": \"PendingSchedule\",\n        \"CbaDisplayableShippingLabel\": \"quis in officia dolore\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"cupidatat\",\n        \"LatestShipDate\": \"ex qui elit\",\n        \"EarliestDeliveryDate\": \"nostrud est aliqua\",\n        \"LatestDeliveryDate\": \"dolore et veli\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"veniam magna culpa\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint Excepteur\",\n        \"IsEstimatedShipDateSet\": true,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": false,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"BUSINESS\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"nulla id commodo eu pariatur\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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    ],\n    \"NextToken\": \"mollit commodo ut laborum\",\n    \"LastUpdatedBefore\": \"Ut labore\",\n    \"CreatedBefore\": \"nostrud\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"cillum anim\",\n      \"message\": \"occaecat in tempor Lorem\",\n      \"details\": \"est magna nulla\"\n    },\n    {\n      \"code\": \"amet officia\",\n      \"message\": \"in nostrud velit\",\n      \"details\": \"adipisicing deserunt incididunt tempor\"\n    }\n  ]\n}"
    },
    {
      "name": "Temporary overloading or maintenance of the server.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders?CreatedAfter=incididunt ea cillum&CreatedBefore=incididunt ea cillum&LastUpdatedAfter=incididunt ea cillum&LastUpdatedBefore=incididunt ea cillum&OrderStatuses=pariatur cupidatat elit,e&MarketplaceIds=pariatur cupidatat elit,e&FulfillmentChannels=pariatur cupidatat elit,e&PaymentMethods=pariatur cupidatat elit,e&BuyerEmail=incididunt ea cillum&SellerOrderId=incididunt ea cillum&MaxResultsPerPage=-48050911&EasyShipShipmentStatuses=pariatur cupidatat elit,e&ElectronicInvoiceStatuses=pariatur cupidatat elit,e&NextToken=incididunt ea cillum&AmazonOrderIds=pariatur cupidatat elit,e&ActualFulfillmentSupplySourceId=incididunt ea cillum&IsISPU=true&StoreChainStoreId=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders"
          ],
          "query": [
            {
              "key": "CreatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "CreatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedAfter",
              "value": "incididunt ea cillum"
            },
            {
              "key": "LastUpdatedBefore",
              "value": "incididunt ea cillum"
            },
            {
              "key": "OrderStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "MarketplaceIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "FulfillmentChannels",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "PaymentMethods",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "BuyerEmail",
              "value": "incididunt ea cillum"
            },
            {
              "key": "SellerOrderId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "MaxResultsPerPage",
              "value": "-48050911"
            },
            {
              "key": "EasyShipShipmentStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ElectronicInvoiceStatuses",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "AmazonOrderIds",
              "value": "pariatur cupidatat elit,e"
            },
            {
              "key": "ActualFulfillmentSupplySourceId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "IsISPU",
              "value": "true"
            },
            {
              "key": "StoreChainStoreId",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ]
        }
      },
      "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    \"Orders\": [\n      {\n        \"AmazonOrderId\": \"laborum cillum\",\n        \"LastUpdateDate\": \"ut culpa\",\n        \"OrderStatus\": \"Unshipped\",\n        \"PurchaseDate\": \"incididunt id labore elit et\",\n        \"SellerOrderId\": \"irure in eu sit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"Lorem commodo quis\",\n        \"OrderChannel\": \"incididunt dolor com\",\n        \"ShipServiceLevel\": \"tempor voluptate\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": 96053224,\n        \"NumberOfItemsUnshipped\": 1088537,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"COD\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"commodo reprehenderit consequat enim Excepteur\",\n        \"ShipmentServiceLevelCategory\": \"anim aliquip proident\",\n        \"EasyShipShipmentStatus\": \"DroppedOff\",\n        \"CbaDisplayableShippingLabel\": \"voluptate nulla eu\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"veniam\",\n        \"LatestShipDate\": \"anim minim\",\n        \"EarliestDeliveryDate\": \"eiusmod fugiat irure\",\n        \"LatestDeliveryDate\": \"deserunt id mollit in\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"sunt sit fugiat\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint reprehenderit\",\n        \"IsEstimatedShipDateSet\": false,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": true,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"INDIVIDUAL\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"Lorem exercitation nostrud\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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      {\n        \"AmazonOrderId\": \"deserunt tempor dolore amet anim\",\n        \"LastUpdateDate\": \"cillum eiusmod\",\n        \"OrderStatus\": \"InvoiceUnconfirmed\",\n        \"PurchaseDate\": \"commodo ea deserunt exercitation pariatur\",\n        \"SellerOrderId\": \"mollit\",\n        \"FulfillmentChannel\": \"MFN\",\n        \"SalesChannel\": \"sint adipisicing deserunt\",\n        \"OrderChannel\": \"elit voluptate Ut\",\n        \"ShipServiceLevel\": \"elit esse\",\n        \"OrderTotal\": {\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        \"NumberOfItemsShipped\": -13833105,\n        \"NumberOfItemsUnshipped\": 12873613,\n        \"PaymentExecutionDetail\": [\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        \"PaymentMethod\": \"Other\",\n        \"PaymentMethodDetails\": [\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        \"MarketplaceId\": \"consequat amet voluptate sint\",\n        \"ShipmentServiceLevelCategory\": \"velit laborum do\",\n        \"EasyShipShipmentStatus\": \"PendingSchedule\",\n        \"CbaDisplayableShippingLabel\": \"quis in officia dolore\",\n        \"OrderType\": \"Preorder\",\n        \"EarliestShipDate\": \"cupidatat\",\n        \"LatestShipDate\": \"ex qui elit\",\n        \"EarliestDeliveryDate\": \"nostrud est aliqua\",\n        \"LatestDeliveryDate\": \"dolore et veli\",\n        \"IsBusinessOrder\": false,\n        \"IsPrime\": false,\n        \"IsPremiumOrder\": false,\n        \"IsGlobalExpressEnabled\": true,\n        \"ReplacedOrderId\": \"veniam magna culpa\",\n        \"IsReplacementOrder\": false,\n        \"PromiseResponseDueDate\": \"sint Excepteur\",\n        \"IsEstimatedShipDateSet\": true,\n        \"IsSoldByAB\": false,\n        \"IsIBA\": false,\n        \"DefaultShipFromLocationAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInvoicePreference\": \"BUSINESS\",\n        \"BuyerTaxInformation\": {\n          \"BuyerLegalCompanyName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerBusinessAddress\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxRegistrationId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxOffice\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"FulfillmentInstruction\": {\n          \"FulfillmentSupplySourceId\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"IsISPU\": false,\n        \"IsAccessPointOrder\": true,\n        \"MarketplaceTaxInfo\": {\n          \"TaxClassifications\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"SellerDisplayName\": \"nulla id commodo eu pariatur\",\n        \"ShippingAddress\": {\n          \"Name\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressLine3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"City\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"County\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"District\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"StateOrRegion\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Municipality\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PostalCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"CountryCode\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Phone\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AddressType\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"BuyerInfo\": {\n          \"BuyerEmail\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerName\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerCounty\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"BuyerTaxInfo\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"PurchaseOrderNumber\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"AutomatedShippingSettings\": {\n          \"HasAutomatedShippingSettings\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedCarrier\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"AutomatedShipMethod\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"HasRegulatedItems\": false,\n        \"ElectronicInvoiceStatus\": \"NotRequired\",\n        \"ItemApprovalTypes\": [\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        \"ItemApprovalStatus\": [\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    ],\n    \"NextToken\": \"mollit commodo ut laborum\",\n    \"LastUpdatedBefore\": \"Ut labore\",\n    \"CreatedBefore\": \"nostrud\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"cillum anim\",\n      \"message\": \"occaecat in tempor Lorem\",\n      \"details\": \"est magna nulla\"\n    },\n    {\n      \"code\": \"amet officia\",\n      \"message\": \"in nostrud velit\",\n      \"details\": \"adipisicing deserunt incididunt tempor\"\n    }\n  ]\n}"
    }
  ]
}