Chilkat Online Tools

DataFlex / Selling Partner API for Orders / get Order

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sStrVal
    String sAmazonOrderId
    String sPurchaseDate
    String sLastUpdateDate
    String sOrderStatus
    String sFulfillmentChannel
    Integer iNumberOfItemsShipped
    Integer iNumberOfItemsUnshipped
    String sPaymentMethod
    String sMarketplaceId
    String sShipmentServiceLevelCategory
    String sOrderType
    String sEarliestShipDate
    String sLatestShipDate
    Boolean iIsBusinessOrder
    Boolean iIsPrime
    Boolean iIsGlobalExpressEnabled
    Boolean iIsPremiumOrder
    Boolean iIsSoldByAB
    Boolean iIsIBA
    String sName
    String sAddressLine1
    String sCity
    String sStateOrRegion
    String sPostalCode
    String sCountryCode
    String sPhone
    String sAddressType
    String sFulfillmentSupplySourceId
    Boolean iIsISPU
    Boolean iIsAccessPointOrder
    String sShippingAddressName
    String sShippingAddressAddressLine1
    String sShippingAddressCity
    String sShippingAddressStateOrRegion
    String sShippingAddressPostalCode
    String sShippingAddressCountryCode
    String sBuyerEmail
    String sBuyerName
    String sCompanyLegalName
    String sPurchaseOrderNumber
    Boolean iHasAutomatedShippingSettings
    Integer i
    Integer iCount_i
    String sTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Send ComSetRequestHeader To hoHttp "Accept" "application/json"

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComQuickGetSb Of hoHttp "https://sellingpartnerapi-na.amazon.com/orders/v0/orders/:orderId" vSbResponseBody To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComLastStatus Of hoHttp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComLastHeader Of hoHttp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Procedure_Return
    End

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

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

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

    Get ComStringOf Of hoJResp "payload.AmazonOrderId" To sAmazonOrderId
    Get ComStringOf Of hoJResp "payload.PurchaseDate" To sPurchaseDate
    Get ComStringOf Of hoJResp "payload.LastUpdateDate" To sLastUpdateDate
    Get ComStringOf Of hoJResp "payload.OrderStatus" To sOrderStatus
    Get ComStringOf Of hoJResp "payload.FulfillmentChannel" To sFulfillmentChannel
    Get ComIntOf Of hoJResp "payload.NumberOfItemsShipped" To iNumberOfItemsShipped
    Get ComIntOf Of hoJResp "payload.NumberOfItemsUnshipped" To iNumberOfItemsUnshipped
    Get ComStringOf Of hoJResp "payload.PaymentMethod" To sPaymentMethod
    Get ComStringOf Of hoJResp "payload.MarketplaceId" To sMarketplaceId
    Get ComStringOf Of hoJResp "payload.ShipmentServiceLevelCategory" To sShipmentServiceLevelCategory
    Get ComStringOf Of hoJResp "payload.OrderType" To sOrderType
    Get ComStringOf Of hoJResp "payload.EarliestShipDate" To sEarliestShipDate
    Get ComStringOf Of hoJResp "payload.LatestShipDate" To sLatestShipDate
    Get ComBoolOf Of hoJResp "payload.IsBusinessOrder" To iIsBusinessOrder
    Get ComBoolOf Of hoJResp "payload.IsPrime" To iIsPrime
    Get ComBoolOf Of hoJResp "payload.IsGlobalExpressEnabled" To iIsGlobalExpressEnabled
    Get ComBoolOf Of hoJResp "payload.IsPremiumOrder" To iIsPremiumOrder
    Get ComBoolOf Of hoJResp "payload.IsSoldByAB" To iIsSoldByAB
    Get ComBoolOf Of hoJResp "payload.IsIBA" To iIsIBA
    Get ComStringOf Of hoJResp "payload.DefaultShipFromLocationAddress.Name" To sName
    Get ComStringOf Of hoJResp "payload.DefaultShipFromLocationAddress.AddressLine1" To sAddressLine1
    Get ComStringOf Of hoJResp "payload.DefaultShipFromLocationAddress.City" To sCity
    Get ComStringOf Of hoJResp "payload.DefaultShipFromLocationAddress.StateOrRegion" To sStateOrRegion
    Get ComStringOf Of hoJResp "payload.DefaultShipFromLocationAddress.PostalCode" To sPostalCode
    Get ComStringOf Of hoJResp "payload.DefaultShipFromLocationAddress.CountryCode" To sCountryCode
    Get ComStringOf Of hoJResp "payload.DefaultShipFromLocationAddress.Phone" To sPhone
    Get ComStringOf Of hoJResp "payload.DefaultShipFromLocationAddress.AddressType" To sAddressType
    Get ComStringOf Of hoJResp "payload.FulfillmentInstruction.FulfillmentSupplySourceId" To sFulfillmentSupplySourceId
    Get ComBoolOf Of hoJResp "payload.IsISPU" To iIsISPU
    Get ComBoolOf Of hoJResp "payload.IsAccessPointOrder" To iIsAccessPointOrder
    Get ComStringOf Of hoJResp "payload.ShippingAddress.Name" To sShippingAddressName
    Get ComStringOf Of hoJResp "payload.ShippingAddress.AddressLine1" To sShippingAddressAddressLine1
    Get ComStringOf Of hoJResp "payload.ShippingAddress.City" To sShippingAddressCity
    Get ComStringOf Of hoJResp "payload.ShippingAddress.StateOrRegion" To sShippingAddressStateOrRegion
    Get ComStringOf Of hoJResp "payload.ShippingAddress.PostalCode" To sShippingAddressPostalCode
    Get ComStringOf Of hoJResp "payload.ShippingAddress.CountryCode" To sShippingAddressCountryCode
    Get ComStringOf Of hoJResp "payload.BuyerInfo.BuyerEmail" To sBuyerEmail
    Get ComStringOf Of hoJResp "payload.BuyerInfo.BuyerName" To sBuyerName
    Get ComStringOf Of hoJResp "payload.BuyerInfo.BuyerTaxInfo.CompanyLegalName" To sCompanyLegalName
    Get ComStringOf Of hoJResp "payload.BuyerInfo.PurchaseOrderNumber" To sPurchaseOrderNumber
    Get ComBoolOf Of hoJResp "payload.AutomatedShippingSettings.HasAutomatedShippingSettings" To iHasAutomatedShippingSettings
    Move 0 To i
    Get ComSizeOfArray Of hoJResp "payload.PaymentMethodDetails" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "payload.PaymentMethodDetails[i]" To sStrVal
        Move (i + 1) To i
    Loop



End_Procedure

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