Chilkat Online Tools

SQL Server / Selling Partner API for Orders / get Order

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept', 'application/json'

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @http, 'QuickGetSb', @success OUT, 'https://sellingpartnerapi-na.amazon.com/orders/v0/orders/:orderId', @sbResponseBody
    IF @success = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @sbResponseBody
        RETURN
      END

    DECLARE @jResp int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @jResp OUT

    EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
    EXEC sp_OASetProperty @jResp, 'EmitCompact', 0


    PRINT 'Response Body:'
    EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
    PRINT @sTmp0

    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @http, 'LastStatus', @respStatusCode OUT

    PRINT 'Response Status Code = ' + @respStatusCode
    IF @respStatusCode >= 400
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @sbResponseBody
        EXEC @hr = sp_OADestroy @jResp
        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

    DECLARE @strVal nvarchar(4000)

    DECLARE @AmazonOrderId nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @AmazonOrderId OUT, 'payload.AmazonOrderId'
    DECLARE @PurchaseDate nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @PurchaseDate OUT, 'payload.PurchaseDate'
    DECLARE @LastUpdateDate nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @LastUpdateDate OUT, 'payload.LastUpdateDate'
    DECLARE @OrderStatus nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @OrderStatus OUT, 'payload.OrderStatus'
    DECLARE @FulfillmentChannel nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @FulfillmentChannel OUT, 'payload.FulfillmentChannel'
    DECLARE @NumberOfItemsShipped int
    EXEC sp_OAMethod @jResp, 'IntOf', @NumberOfItemsShipped OUT, 'payload.NumberOfItemsShipped'
    DECLARE @NumberOfItemsUnshipped int
    EXEC sp_OAMethod @jResp, 'IntOf', @NumberOfItemsUnshipped OUT, 'payload.NumberOfItemsUnshipped'
    DECLARE @PaymentMethod nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @PaymentMethod OUT, 'payload.PaymentMethod'
    DECLARE @MarketplaceId nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @MarketplaceId OUT, 'payload.MarketplaceId'
    DECLARE @ShipmentServiceLevelCategory nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @ShipmentServiceLevelCategory OUT, 'payload.ShipmentServiceLevelCategory'
    DECLARE @OrderType nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @OrderType OUT, 'payload.OrderType'
    DECLARE @EarliestShipDate nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @EarliestShipDate OUT, 'payload.EarliestShipDate'
    DECLARE @LatestShipDate nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @LatestShipDate OUT, 'payload.LatestShipDate'
    DECLARE @IsBusinessOrder int
    EXEC sp_OAMethod @jResp, 'BoolOf', @IsBusinessOrder OUT, 'payload.IsBusinessOrder'
    DECLARE @IsPrime int
    EXEC sp_OAMethod @jResp, 'BoolOf', @IsPrime OUT, 'payload.IsPrime'
    DECLARE @IsGlobalExpressEnabled int
    EXEC sp_OAMethod @jResp, 'BoolOf', @IsGlobalExpressEnabled OUT, 'payload.IsGlobalExpressEnabled'
    DECLARE @IsPremiumOrder int
    EXEC sp_OAMethod @jResp, 'BoolOf', @IsPremiumOrder OUT, 'payload.IsPremiumOrder'
    DECLARE @IsSoldByAB int
    EXEC sp_OAMethod @jResp, 'BoolOf', @IsSoldByAB OUT, 'payload.IsSoldByAB'
    DECLARE @IsIBA int
    EXEC sp_OAMethod @jResp, 'BoolOf', @IsIBA OUT, 'payload.IsIBA'
    DECLARE @Name nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Name OUT, 'payload.DefaultShipFromLocationAddress.Name'
    DECLARE @AddressLine1 nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @AddressLine1 OUT, 'payload.DefaultShipFromLocationAddress.AddressLine1'
    DECLARE @City nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @City OUT, 'payload.DefaultShipFromLocationAddress.City'
    DECLARE @StateOrRegion nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @StateOrRegion OUT, 'payload.DefaultShipFromLocationAddress.StateOrRegion'
    DECLARE @PostalCode nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @PostalCode OUT, 'payload.DefaultShipFromLocationAddress.PostalCode'
    DECLARE @CountryCode nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @CountryCode OUT, 'payload.DefaultShipFromLocationAddress.CountryCode'
    DECLARE @Phone nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Phone OUT, 'payload.DefaultShipFromLocationAddress.Phone'
    DECLARE @AddressType nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @AddressType OUT, 'payload.DefaultShipFromLocationAddress.AddressType'
    DECLARE @FulfillmentSupplySourceId nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @FulfillmentSupplySourceId OUT, 'payload.FulfillmentInstruction.FulfillmentSupplySourceId'
    DECLARE @IsISPU int
    EXEC sp_OAMethod @jResp, 'BoolOf', @IsISPU OUT, 'payload.IsISPU'
    DECLARE @IsAccessPointOrder int
    EXEC sp_OAMethod @jResp, 'BoolOf', @IsAccessPointOrder OUT, 'payload.IsAccessPointOrder'
    DECLARE @ShippingAddressName nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @ShippingAddressName OUT, 'payload.ShippingAddress.Name'
    DECLARE @ShippingAddressAddressLine1 nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @ShippingAddressAddressLine1 OUT, 'payload.ShippingAddress.AddressLine1'
    DECLARE @ShippingAddressCity nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @ShippingAddressCity OUT, 'payload.ShippingAddress.City'
    DECLARE @ShippingAddressStateOrRegion nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @ShippingAddressStateOrRegion OUT, 'payload.ShippingAddress.StateOrRegion'
    DECLARE @ShippingAddressPostalCode nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @ShippingAddressPostalCode OUT, 'payload.ShippingAddress.PostalCode'
    DECLARE @ShippingAddressCountryCode nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @ShippingAddressCountryCode OUT, 'payload.ShippingAddress.CountryCode'
    DECLARE @BuyerEmail nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @BuyerEmail OUT, 'payload.BuyerInfo.BuyerEmail'
    DECLARE @BuyerName nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @BuyerName OUT, 'payload.BuyerInfo.BuyerName'
    DECLARE @CompanyLegalName nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @CompanyLegalName OUT, 'payload.BuyerInfo.BuyerTaxInfo.CompanyLegalName'
    DECLARE @PurchaseOrderNumber nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @PurchaseOrderNumber OUT, 'payload.BuyerInfo.PurchaseOrderNumber'
    DECLARE @HasAutomatedShippingSettings int
    EXEC sp_OAMethod @jResp, 'BoolOf', @HasAutomatedShippingSettings OUT, 'payload.AutomatedShippingSettings.HasAutomatedShippingSettings'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'payload.PaymentMethodDetails'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'payload.PaymentMethodDetails[i]'
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jResp


END
GO

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