Chilkat Online Tools

PowerBuilder / Selling Partner API for Orders / get Order

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_StrVal
string ls_AmazonOrderId
string ls_PurchaseDate
string ls_LastUpdateDate
string ls_OrderStatus
string ls_FulfillmentChannel
integer li_NumberOfItemsShipped
integer li_NumberOfItemsUnshipped
string ls_PaymentMethod
string ls_MarketplaceId
string ls_ShipmentServiceLevelCategory
string ls_OrderType
string ls_EarliestShipDate
string ls_LatestShipDate
integer li_IsBusinessOrder
integer li_IsPrime
integer li_IsGlobalExpressEnabled
integer li_IsPremiumOrder
integer li_IsSoldByAB
integer li_IsIBA
string ls_Name
string ls_AddressLine1
string ls_City
string ls_StateOrRegion
string ls_PostalCode
string ls_CountryCode
string ls_Phone
string ls_AddressType
string ls_FulfillmentSupplySourceId
integer li_IsISPU
integer li_IsAccessPointOrder
string ls_ShippingAddressName
string ls_ShippingAddressAddressLine1
string ls_ShippingAddressCity
string ls_ShippingAddressStateOrRegion
string ls_ShippingAddressPostalCode
string ls_ShippingAddressCountryCode
string ls_BuyerEmail
string ls_BuyerName
string ls_CompanyLegalName
string ls_PurchaseOrderNumber
integer li_HasAutomatedShippingSettings
integer i
integer li_Count_i

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.SetRequestHeader("Accept","application/json")

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

li_Success = loo_Http.QuickGetSb("https://sellingpartnerapi-na.amazon.com/orders/v0/orders/:orderId",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Http.LastHeader
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_SbResponseBody
    destroy loo_JResp
    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

ls_AmazonOrderId = loo_JResp.StringOf("payload.AmazonOrderId")
ls_PurchaseDate = loo_JResp.StringOf("payload.PurchaseDate")
ls_LastUpdateDate = loo_JResp.StringOf("payload.LastUpdateDate")
ls_OrderStatus = loo_JResp.StringOf("payload.OrderStatus")
ls_FulfillmentChannel = loo_JResp.StringOf("payload.FulfillmentChannel")
li_NumberOfItemsShipped = loo_JResp.IntOf("payload.NumberOfItemsShipped")
li_NumberOfItemsUnshipped = loo_JResp.IntOf("payload.NumberOfItemsUnshipped")
ls_PaymentMethod = loo_JResp.StringOf("payload.PaymentMethod")
ls_MarketplaceId = loo_JResp.StringOf("payload.MarketplaceId")
ls_ShipmentServiceLevelCategory = loo_JResp.StringOf("payload.ShipmentServiceLevelCategory")
ls_OrderType = loo_JResp.StringOf("payload.OrderType")
ls_EarliestShipDate = loo_JResp.StringOf("payload.EarliestShipDate")
ls_LatestShipDate = loo_JResp.StringOf("payload.LatestShipDate")
li_IsBusinessOrder = loo_JResp.BoolOf("payload.IsBusinessOrder")
li_IsPrime = loo_JResp.BoolOf("payload.IsPrime")
li_IsGlobalExpressEnabled = loo_JResp.BoolOf("payload.IsGlobalExpressEnabled")
li_IsPremiumOrder = loo_JResp.BoolOf("payload.IsPremiumOrder")
li_IsSoldByAB = loo_JResp.BoolOf("payload.IsSoldByAB")
li_IsIBA = loo_JResp.BoolOf("payload.IsIBA")
ls_Name = loo_JResp.StringOf("payload.DefaultShipFromLocationAddress.Name")
ls_AddressLine1 = loo_JResp.StringOf("payload.DefaultShipFromLocationAddress.AddressLine1")
ls_City = loo_JResp.StringOf("payload.DefaultShipFromLocationAddress.City")
ls_StateOrRegion = loo_JResp.StringOf("payload.DefaultShipFromLocationAddress.StateOrRegion")
ls_PostalCode = loo_JResp.StringOf("payload.DefaultShipFromLocationAddress.PostalCode")
ls_CountryCode = loo_JResp.StringOf("payload.DefaultShipFromLocationAddress.CountryCode")
ls_Phone = loo_JResp.StringOf("payload.DefaultShipFromLocationAddress.Phone")
ls_AddressType = loo_JResp.StringOf("payload.DefaultShipFromLocationAddress.AddressType")
ls_FulfillmentSupplySourceId = loo_JResp.StringOf("payload.FulfillmentInstruction.FulfillmentSupplySourceId")
li_IsISPU = loo_JResp.BoolOf("payload.IsISPU")
li_IsAccessPointOrder = loo_JResp.BoolOf("payload.IsAccessPointOrder")
ls_ShippingAddressName = loo_JResp.StringOf("payload.ShippingAddress.Name")
ls_ShippingAddressAddressLine1 = loo_JResp.StringOf("payload.ShippingAddress.AddressLine1")
ls_ShippingAddressCity = loo_JResp.StringOf("payload.ShippingAddress.City")
ls_ShippingAddressStateOrRegion = loo_JResp.StringOf("payload.ShippingAddress.StateOrRegion")
ls_ShippingAddressPostalCode = loo_JResp.StringOf("payload.ShippingAddress.PostalCode")
ls_ShippingAddressCountryCode = loo_JResp.StringOf("payload.ShippingAddress.CountryCode")
ls_BuyerEmail = loo_JResp.StringOf("payload.BuyerInfo.BuyerEmail")
ls_BuyerName = loo_JResp.StringOf("payload.BuyerInfo.BuyerName")
ls_CompanyLegalName = loo_JResp.StringOf("payload.BuyerInfo.BuyerTaxInfo.CompanyLegalName")
ls_PurchaseOrderNumber = loo_JResp.StringOf("payload.BuyerInfo.PurchaseOrderNumber")
li_HasAutomatedShippingSettings = loo_JResp.BoolOf("payload.AutomatedShippingSettings.HasAutomatedShippingSettings")
i = 0
li_Count_i = loo_JResp.SizeOfArray("payload.PaymentMethodDetails")
do while i < li_Count_i
    loo_JResp.I = i
    ls_StrVal = loo_JResp.StringOf("payload.PaymentMethodDetails[i]")
    i = i + 1
loop


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

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

Postman Collection Item JSON

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