Chilkat Online Tools

Xojo / Selling Partner API for Orders / get Order

Back to Collection Items

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

Dim http As New Chilkat.Http
Dim success As Boolean

http.SetRequestHeader "Accept","application/json"

Dim sbResponseBody As New Chilkat.StringBuilder
success = http.QuickGetSb("https://sellingpartnerapi-na.amazon.com/orders/v0/orders/:orderId",sbResponseBody)
If (success = False) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

Dim jResp As New Chilkat.JsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False

System.DebugLog("Response Body:")
System.DebugLog(jResp.Emit())

Dim respStatusCode As Int32
respStatusCode = http.LastStatus
System.DebugLog("Response Status Code = " + Str(respStatusCode))
If (respStatusCode >= 400) Then
    System.DebugLog("Response Header:")
    System.DebugLog(http.LastHeader)
    System.DebugLog("Failed.")
    Return
End If

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

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

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

Dim strVal As String

Dim AmazonOrderId As String
AmazonOrderId = jResp.StringOf("payload.AmazonOrderId")
Dim PurchaseDate As String
PurchaseDate = jResp.StringOf("payload.PurchaseDate")
Dim LastUpdateDate As String
LastUpdateDate = jResp.StringOf("payload.LastUpdateDate")
Dim OrderStatus As String
OrderStatus = jResp.StringOf("payload.OrderStatus")
Dim FulfillmentChannel As String
FulfillmentChannel = jResp.StringOf("payload.FulfillmentChannel")
Dim NumberOfItemsShipped As Int32
NumberOfItemsShipped = jResp.IntOf("payload.NumberOfItemsShipped")
Dim NumberOfItemsUnshipped As Int32
NumberOfItemsUnshipped = jResp.IntOf("payload.NumberOfItemsUnshipped")
Dim PaymentMethod As String
PaymentMethod = jResp.StringOf("payload.PaymentMethod")
Dim MarketplaceId As String
MarketplaceId = jResp.StringOf("payload.MarketplaceId")
Dim ShipmentServiceLevelCategory As String
ShipmentServiceLevelCategory = jResp.StringOf("payload.ShipmentServiceLevelCategory")
Dim OrderType As String
OrderType = jResp.StringOf("payload.OrderType")
Dim EarliestShipDate As String
EarliestShipDate = jResp.StringOf("payload.EarliestShipDate")
Dim LatestShipDate As String
LatestShipDate = jResp.StringOf("payload.LatestShipDate")
Dim IsBusinessOrder As Boolean
IsBusinessOrder = jResp.BoolOf("payload.IsBusinessOrder")
Dim IsPrime As Boolean
IsPrime = jResp.BoolOf("payload.IsPrime")
Dim IsGlobalExpressEnabled As Boolean
IsGlobalExpressEnabled = jResp.BoolOf("payload.IsGlobalExpressEnabled")
Dim IsPremiumOrder As Boolean
IsPremiumOrder = jResp.BoolOf("payload.IsPremiumOrder")
Dim IsSoldByAB As Boolean
IsSoldByAB = jResp.BoolOf("payload.IsSoldByAB")
Dim IsIBA As Boolean
IsIBA = jResp.BoolOf("payload.IsIBA")
Dim Name As String
Name = jResp.StringOf("payload.DefaultShipFromLocationAddress.Name")
Dim AddressLine1 As String
AddressLine1 = jResp.StringOf("payload.DefaultShipFromLocationAddress.AddressLine1")
Dim City As String
City = jResp.StringOf("payload.DefaultShipFromLocationAddress.City")
Dim StateOrRegion As String
StateOrRegion = jResp.StringOf("payload.DefaultShipFromLocationAddress.StateOrRegion")
Dim PostalCode As String
PostalCode = jResp.StringOf("payload.DefaultShipFromLocationAddress.PostalCode")
Dim CountryCode As String
CountryCode = jResp.StringOf("payload.DefaultShipFromLocationAddress.CountryCode")
Dim Phone As String
Phone = jResp.StringOf("payload.DefaultShipFromLocationAddress.Phone")
Dim AddressType As String
AddressType = jResp.StringOf("payload.DefaultShipFromLocationAddress.AddressType")
Dim FulfillmentSupplySourceId As String
FulfillmentSupplySourceId = jResp.StringOf("payload.FulfillmentInstruction.FulfillmentSupplySourceId")
Dim IsISPU As Boolean
IsISPU = jResp.BoolOf("payload.IsISPU")
Dim IsAccessPointOrder As Boolean
IsAccessPointOrder = jResp.BoolOf("payload.IsAccessPointOrder")
Dim ShippingAddressName As String
ShippingAddressName = jResp.StringOf("payload.ShippingAddress.Name")
Dim ShippingAddressAddressLine1 As String
ShippingAddressAddressLine1 = jResp.StringOf("payload.ShippingAddress.AddressLine1")
Dim ShippingAddressCity As String
ShippingAddressCity = jResp.StringOf("payload.ShippingAddress.City")
Dim ShippingAddressStateOrRegion As String
ShippingAddressStateOrRegion = jResp.StringOf("payload.ShippingAddress.StateOrRegion")
Dim ShippingAddressPostalCode As String
ShippingAddressPostalCode = jResp.StringOf("payload.ShippingAddress.PostalCode")
Dim ShippingAddressCountryCode As String
ShippingAddressCountryCode = jResp.StringOf("payload.ShippingAddress.CountryCode")
Dim BuyerEmail As String
BuyerEmail = jResp.StringOf("payload.BuyerInfo.BuyerEmail")
Dim BuyerName As String
BuyerName = jResp.StringOf("payload.BuyerInfo.BuyerName")
Dim CompanyLegalName As String
CompanyLegalName = jResp.StringOf("payload.BuyerInfo.BuyerTaxInfo.CompanyLegalName")
Dim PurchaseOrderNumber As String
PurchaseOrderNumber = jResp.StringOf("payload.BuyerInfo.PurchaseOrderNumber")
Dim HasAutomatedShippingSettings As Boolean
HasAutomatedShippingSettings = jResp.BoolOf("payload.AutomatedShippingSettings.HasAutomatedShippingSettings")
Dim i As Int32
i = 0
Dim count_i As Int32
count_i = jResp.SizeOfArray("payload.PaymentMethodDetails")
While i < count_i
    jResp.I = i
    strVal = jResp.StringOf("payload.PaymentMethodDetails[i]")
    i = i + 1
Wend

Curl Command

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

Postman Collection Item JSON

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