Chilkat Online Tools

ERROR!

------------------- GenerateCode ----------------------
ImpliedContentType: 
---- begin chilkat script ----
// This example assumes the Chilkat API to have been previously unlocked.
// See {{-global_unlock:::Global Unlock Sample-}} for sample code.

new Http http;
ckbool success;

new JsonObject queryParams;
ignore = queryParams.UpdateString("NextToken","incididunt ea cillum");
ignore = queryParams.UpdateString("ItemApprovalTypes","<string>");
ignore = queryParams.UpdateString("ItemApprovalStatus","<string>,<string>");

call http.SetRequestHeader("Accept","application/json");


HttpResponse resp = http.QuickRequestParams("GET","https://sellingpartnerapi-na.amazon.com/orders/v0/orders/:orderId/approvals",queryParams);
if (http.LastMethodSuccess == ckfalse) {
    println http.LastErrorText;
    return;
}

new StringBuilder sbResponseBody;
ignore = resp.GetBodySb(sbResponseBody);

new JsonObject jResp;
call jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = ckfalse;

println "Response Body:";
println jResp.Emit();

int respStatusCode = resp.StatusCode;
println "Response Status Code = ",respStatusCode;
if (respStatusCode >= 400) {
    println "Response Header:";
    println resp.Header;
    println "Failed.";
    delete resp;
    return;
}
delete resp;

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

// {
//   "payload": {
//     "NextToken": "2YgYW55IGNhcm5hbCBwbGVhc3VyZS4",
//     "OrderItemsApprovalsList": [
//       {
//         "OrderItemId": "12354324",
//         "ApprovalType": "LEONARDI_APPROVAL",
//         "ApprovalStatus": "PENDING_SELLING_PARTNER_APPROVAL",
//         "ItemApprovals": [
//           {
//             "SequenceId": 1,
//             "Timestamp": "string",
//             "Actor": "SELLING_PARTNER",
//             "Approver": "approver-id-123",
//             "ApprovalActionProcessStatus": "ERROR",
//             "ApprovalActionProcessStatusMessage": "Invalid substitution request.",
//             "ApprovalAction": {
//               "ActionType": "APPROVE",
//               "Comment": "Set price and units",
//               "Changes": {
//                 "ItemPrice": {
//                   "CurrencyCode": "EUR",
//                   "Amount": "8.5"
//                 },
//                 "Quantity": 2,
//                 "SubstitutedBy": {
//                   "IdentifierType": "EXTERNAL_ID",
//                   "Identifier": "P12325"
//                 }
//               }
//             }
//           }
//         ]
//       },
//       {
//         "OrderItemId": "79039765272157",
//         "ApprovalType": "LEONARDI_APPROVAL",
//         "ApprovalStatus": "DECLINED",
//         "ItemApprovals": [
//           {
//             "SequenceId": 1,
//             "Timestamp": "string",
//             "Actor": "SELLING_PARTNER",
//             "Approver": "approver-id-123",
//             "ApprovalActionProcessStatus": "SUCCESS",
//             "ApprovalActionProcessStatusMessage": "Approval request validated",
//             "ApprovalAction": {
//               "ActionType": "DECLINE",
//               "Comment": "Out of stock."
//             }
//           }
//         ]
//       }
//     ]
//   }
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: {{.https://tools.chilkat.io/jsonParse|||Generate JSON Parsing Code.}}

#ifdef IS_C_CPP
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
#undef IS_C_CPP

string OrderItemId;
string ApprovalType;
string ApprovalStatus;
int j;
int count_j;
int SequenceId;
string Timestamp;
string Actor;
string Approver;
string ApprovalActionProcessStatus;
string ApprovalActionProcessStatusMessage;
string ActionType;
string Comment;
string CurrencyCode;
string Amount;
int Quantity;
string IdentifierType;
string Identifier;

string NextToken = jResp.StringOf("payload.NextToken");
int i = 0;
int count_i = jResp.SizeOfArray("payload.OrderItemsApprovalsList");
while i < count_i {
    jResp.I = i;
    OrderItemId = jResp.StringOf("payload.OrderItemsApprovalsList[i].OrderItemId");
    ApprovalType = jResp.StringOf("payload.OrderItemsApprovalsList[i].ApprovalType");
    ApprovalStatus = jResp.StringOf("payload.OrderItemsApprovalsList[i].ApprovalStatus");
    j = 0;
    count_j = jResp.SizeOfArray("payload.OrderItemsApprovalsList[i].ItemApprovals");
    while j < count_j {
        jResp.J = j;
        SequenceId = jResp.IntOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].SequenceId");
        Timestamp = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].Timestamp");
        Actor = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].Actor");
        Approver = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].Approver");
        ApprovalActionProcessStatus = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalActionProcessStatus");
        ApprovalActionProcessStatusMessage = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalActionProcessStatusMessage");
        ActionType = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.ActionType");
        Comment = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Comment");
        CurrencyCode = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.ItemPrice.CurrencyCode");
        Amount = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.ItemPrice.Amount");
        Quantity = jResp.IntOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.Quantity");
        IdentifierType = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.SubstitutedBy.IdentifierType");
        Identifier = jResp.StringOf("payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.SubstitutedBy.Identifier");
        j = j + 1;
    }
    i = i + 1;
}



---- end chilkat script ----

SQL Server / Selling Partner API for Orders / get Order Items Approvals

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
    DECLARE @iTmp0 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

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

    EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'NextToken', 'incididunt ea cillum'
    EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'ItemApprovalTypes', '<string>'
    EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'ItemApprovalStatus', '<string>,<string>'

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

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://sellingpartnerapi-na.amazon.com/orders/v0/orders/:orderId/approvals', @queryParams
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @queryParams
        RETURN
      END

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

    EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody

    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 @resp, 'StatusCode', @respStatusCode OUT

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

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @resp

        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @queryParams
        EXEC @hr = sp_OADestroy @sbResponseBody
        EXEC @hr = sp_OADestroy @jResp
        RETURN
      END
    EXEC @hr = sp_OADestroy @resp

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

    -- {
    --   "payload": {
    --     "NextToken": "2YgYW55IGNhcm5hbCBwbGVhc3VyZS4",
    --     "OrderItemsApprovalsList": [
    --       {
    --         "OrderItemId": "12354324",
    --         "ApprovalType": "LEONARDI_APPROVAL",
    --         "ApprovalStatus": "PENDING_SELLING_PARTNER_APPROVAL",
    --         "ItemApprovals": [
    --           {
    --             "SequenceId": 1,
    --             "Timestamp": "string",
    --             "Actor": "SELLING_PARTNER",
    --             "Approver": "approver-id-123",
    --             "ApprovalActionProcessStatus": "ERROR",
    --             "ApprovalActionProcessStatusMessage": "Invalid substitution request.",
    --             "ApprovalAction": {
    --               "ActionType": "APPROVE",
    --               "Comment": "Set price and units",
    --               "Changes": {
    --                 "ItemPrice": {
    --                   "CurrencyCode": "EUR",
    --                   "Amount": "8.5"
    --                 },
    --                 "Quantity": 2,
    --                 "SubstitutedBy": {
    --                   "IdentifierType": "EXTERNAL_ID",
    --                   "Identifier": "P12325"
    --                 }
    --               }
    --             }
    --           }
    --         ]
    --       },
    --       {
    --         "OrderItemId": "79039765272157",
    --         "ApprovalType": "LEONARDI_APPROVAL",
    --         "ApprovalStatus": "DECLINED",
    --         "ItemApprovals": [
    --           {
    --             "SequenceId": 1,
    --             "Timestamp": "string",
    --             "Actor": "SELLING_PARTNER",
    --             "Approver": "approver-id-123",
    --             "ApprovalActionProcessStatus": "SUCCESS",
    --             "ApprovalActionProcessStatusMessage": "Approval request validated",
    --             "ApprovalAction": {
    --               "ActionType": "DECLINE",
    --               "Comment": "Out of stock."
    --             }
    --           }
    --         ]
    --       }
    --     ]
    --   }
    -- }

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

    DECLARE @OrderItemId nvarchar(4000)

    DECLARE @ApprovalType nvarchar(4000)

    DECLARE @ApprovalStatus nvarchar(4000)

    DECLARE @j int

    DECLARE @count_j int

    DECLARE @SequenceId int

    DECLARE @Timestamp nvarchar(4000)

    DECLARE @Actor nvarchar(4000)

    DECLARE @Approver nvarchar(4000)

    DECLARE @ApprovalActionProcessStatus nvarchar(4000)

    DECLARE @ApprovalActionProcessStatusMessage nvarchar(4000)

    DECLARE @ActionType nvarchar(4000)

    DECLARE @Comment nvarchar(4000)

    DECLARE @CurrencyCode nvarchar(4000)

    DECLARE @Amount nvarchar(4000)

    DECLARE @Quantity int

    DECLARE @IdentifierType nvarchar(4000)

    DECLARE @Identifier nvarchar(4000)

    DECLARE @NextToken nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @NextToken OUT, 'payload.NextToken'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'payload.OrderItemsApprovalsList'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @OrderItemId OUT, 'payload.OrderItemsApprovalsList[i].OrderItemId'
        EXEC sp_OAMethod @jResp, 'StringOf', @ApprovalType OUT, 'payload.OrderItemsApprovalsList[i].ApprovalType'
        EXEC sp_OAMethod @jResp, 'StringOf', @ApprovalStatus OUT, 'payload.OrderItemsApprovalsList[i].ApprovalStatus'
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'IntOf', @SequenceId OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].SequenceId'
            EXEC sp_OAMethod @jResp, 'StringOf', @Timestamp OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].Timestamp'
            EXEC sp_OAMethod @jResp, 'StringOf', @Actor OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].Actor'
            EXEC sp_OAMethod @jResp, 'StringOf', @Approver OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].Approver'
            EXEC sp_OAMethod @jResp, 'StringOf', @ApprovalActionProcessStatus OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalActionProcessStatus'
            EXEC sp_OAMethod @jResp, 'StringOf', @ApprovalActionProcessStatusMessage OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalActionProcessStatusMessage'
            EXEC sp_OAMethod @jResp, 'StringOf', @ActionType OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.ActionType'
            EXEC sp_OAMethod @jResp, 'StringOf', @Comment OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Comment'
            EXEC sp_OAMethod @jResp, 'StringOf', @CurrencyCode OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.ItemPrice.CurrencyCode'
            EXEC sp_OAMethod @jResp, 'StringOf', @Amount OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.ItemPrice.Amount'
            EXEC sp_OAMethod @jResp, 'IntOf', @Quantity OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.Quantity'
            EXEC sp_OAMethod @jResp, 'StringOf', @IdentifierType OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.SubstitutedBy.IdentifierType'
            EXEC sp_OAMethod @jResp, 'StringOf', @Identifier OUT, 'payload.OrderItemsApprovalsList[i].ItemApprovals[j].ApprovalAction.Changes.SubstitutedBy.Identifier'
            SELECT @j = @j + 1
          END
        SELECT @i = @i + 1
      END

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


END
GO

Curl Command

curl -G -d "NextToken=incididunt%20ea%20cillum"
	-d "ItemApprovalTypes=%3Cstring%3E"
	-d "ItemApprovalStatus=%3Cstring%3E,%3Cstring%3E"
	-H "Accept: application/json"
https://sellingpartnerapi-na.amazon.com/orders/v0/orders/:orderId/approvals

Postman Collection Item JSON

{
  "name": "get Order Items Approvals",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/orders/v0/orders/:orderId/approvals?NextToken=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "orders",
        "v0",
        "orders",
        ":orderId",
        "approvals"
      ],
      "query": [
        {
          "key": "NextToken",
          "value": "incididunt ea cillum",
          "description": "A string token returned in the response of your previous request."
        },
        {
          "key": "ItemApprovalTypes",
          "value": "<string>",
          "description": "When set, only return approvals for items which approval type is contained in the specified approval types."
        },
        {
          "key": "ItemApprovalStatus",
          "value": "<string>,<string>",
          "description": "When set, only return approvals that contain items which approval status is contained in the specified approval status."
        }
      ],
      "variable": [
        {
          "key": "orderId",
          "value": "incididunt ea cillum",
          "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format, e.g. 933-1671587-0818628."
        }
      ]
    },
    "description": "Returns detailed order items approvals information for the order specified. If NextToken is provided, it's used to retrieve the next page of order items approvals.\n\n**Usage Plans:**\n\n| Plan type | Rate (requests per second) | Burst |\n| ---- | ---- | ---- |\n|Default| 0.5 | 30 |\n|Selling partner specific| Variable | Variable |\n\nThe x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation."
  },
  "response": [
    {
      "name": "Success.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId/approvals?NextToken=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId",
            "approvals"
          ],
          "query": [
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format, e.g. 933-1671587-0818628."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "incididunt ea cillum",
          "description": "Your rate limit (requests per second) for this operation."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "incididunt ea cillum",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"payload\": {\n    \"NextToken\": \"2YgYW55IGNhcm5hbCBwbGVhc3VyZS4\",\n    \"OrderItemsApprovalsList\": [\n      {\n        \"OrderItemId\": \"12354324\",\n        \"ApprovalType\": \"LEONARDI_APPROVAL\",\n        \"ApprovalStatus\": \"PENDING_SELLING_PARTNER_APPROVAL\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": 1,\n            \"Timestamp\": \"string\",\n            \"Actor\": \"SELLING_PARTNER\",\n            \"Approver\": \"approver-id-123\",\n            \"ApprovalActionProcessStatus\": \"ERROR\",\n            \"ApprovalActionProcessStatusMessage\": \"Invalid substitution request.\",\n            \"ApprovalAction\": {\n              \"ActionType\": \"APPROVE\",\n              \"Comment\": \"Set price and units\",\n              \"Changes\": {\n                \"ItemPrice\": {\n                  \"CurrencyCode\": \"EUR\",\n                  \"Amount\": \"8.5\"\n                },\n                \"Quantity\": 2,\n                \"SubstitutedBy\": {\n                  \"IdentifierType\": \"EXTERNAL_ID\",\n                  \"Identifier\": \"P12325\"\n                }\n              }\n            }\n          }\n        ]\n      },\n      {\n        \"OrderItemId\": \"79039765272157\",\n        \"ApprovalType\": \"LEONARDI_APPROVAL\",\n        \"ApprovalStatus\": \"DECLINED\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": 1,\n            \"Timestamp\": \"string\",\n            \"Actor\": \"SELLING_PARTNER\",\n            \"Approver\": \"approver-id-123\",\n            \"ApprovalActionProcessStatus\": \"SUCCESS\",\n            \"ApprovalActionProcessStatusMessage\": \"Approval request validated\",\n            \"ApprovalAction\": {\n              \"ActionType\": \"DECLINE\",\n              \"Comment\": \"Out of stock.\"\n            }\n          }\n        ]\n      }\n    ]\n  }\n}"
    },
    {
      "name": "Request has missing or invalid parameters and cannot be parsed.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId/approvals?NextToken=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId",
            "approvals"
          ],
          "query": [
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format, e.g. 933-1671587-0818628."
            }
          ]
        }
      },
      "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    \"OrderItemsApprovalsList\": [\n      {\n        \"OrderItemId\": \"consequat occaecat\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      },\n      {\n        \"OrderItemId\": \"occaecat\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      }\n    ],\n    \"NextToken\": \"cupidatat irure incididunt dolor\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"Ut adipisicing nostrud\",\n      \"message\": \"laboris laborum voluptate adipisicing\",\n      \"details\": \"ut sed Excepteur ex\"\n    },\n    {\n      \"code\": \"ex reprehenderit veniam\",\n      \"message\": \"minim eu\",\n      \"details\": \"minim cupida\"\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/approvals?NextToken=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId",
            "approvals"
          ],
          "query": [
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format, e.g. 933-1671587-0818628."
            }
          ]
        }
      },
      "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    \"OrderItemsApprovalsList\": [\n      {\n        \"OrderItemId\": \"consequat amet est\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      },\n      {\n        \"OrderItemId\": \"dolore enim\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      }\n    ],\n    \"NextToken\": \"est voluptate et\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"qui est dolor\",\n      \"message\": \"irure Duis\",\n      \"details\": \"proident laborum culpa eu laboris\"\n    },\n    {\n      \"code\": \"adipisicing\",\n      \"message\": \"ipsum magna fugiat\",\n      \"details\": \"aute officia\"\n    }\n  ]\n}"
    },
    {
      "name": "The resource specified does not exist.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId/approvals?NextToken=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId",
            "approvals"
          ],
          "query": [
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format, e.g. 933-1671587-0818628."
            }
          ]
        }
      },
      "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    \"OrderItemsApprovalsList\": [\n      {\n        \"OrderItemId\": \"consequat amet est\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      },\n      {\n        \"OrderItemId\": \"dolore enim\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      }\n    ],\n    \"NextToken\": \"est voluptate et\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"qui est dolor\",\n      \"message\": \"irure Duis\",\n      \"details\": \"proident laborum culpa eu laboris\"\n    },\n    {\n      \"code\": \"adipisicing\",\n      \"message\": \"ipsum magna fugiat\",\n      \"details\": \"aute officia\"\n    }\n  ]\n}"
    },
    {
      "name": "The frequency of requests was greater than allowed.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId/approvals?NextToken=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId",
            "approvals"
          ],
          "query": [
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format, e.g. 933-1671587-0818628."
            }
          ]
        }
      },
      "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    \"OrderItemsApprovalsList\": [\n      {\n        \"OrderItemId\": \"consequat amet est\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      },\n      {\n        \"OrderItemId\": \"dolore enim\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      }\n    ],\n    \"NextToken\": \"est voluptate et\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"qui est dolor\",\n      \"message\": \"irure Duis\",\n      \"details\": \"proident laborum culpa eu laboris\"\n    },\n    {\n      \"code\": \"adipisicing\",\n      \"message\": \"ipsum magna fugiat\",\n      \"details\": \"aute officia\"\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/approvals?NextToken=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId",
            "approvals"
          ],
          "query": [
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format, e.g. 933-1671587-0818628."
            }
          ]
        }
      },
      "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    \"OrderItemsApprovalsList\": [\n      {\n        \"OrderItemId\": \"consequat amet est\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      },\n      {\n        \"OrderItemId\": \"dolore enim\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      }\n    ],\n    \"NextToken\": \"est voluptate et\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"qui est dolor\",\n      \"message\": \"irure Duis\",\n      \"details\": \"proident laborum culpa eu laboris\"\n    },\n    {\n      \"code\": \"adipisicing\",\n      \"message\": \"ipsum magna fugiat\",\n      \"details\": \"aute officia\"\n    }\n  ]\n}"
    },
    {
      "name": "Temporary overloading or maintenance of the server.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/orders/v0/orders/:orderId/approvals?NextToken=incididunt ea cillum&ItemApprovalTypes=<string>&ItemApprovalStatus=<string>,<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orders",
            "v0",
            "orders",
            ":orderId",
            "approvals"
          ],
          "query": [
            {
              "key": "NextToken",
              "value": "incididunt ea cillum"
            },
            {
              "key": "ItemApprovalTypes",
              "value": "<string>"
            },
            {
              "key": "ItemApprovalStatus",
              "value": "<string>,<string>"
            }
          ],
          "variable": [
            {
              "key": "orderId",
              "value": "incididunt ea cillum",
              "description": "(Required) An Amazon-defined order identifier, in 3-7-7 format, e.g. 933-1671587-0818628."
            }
          ]
        }
      },
      "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    \"OrderItemsApprovalsList\": [\n      {\n        \"OrderItemId\": \"consequat amet est\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      },\n      {\n        \"OrderItemId\": \"dolore enim\",\n        \"ApprovalType\": \"<string>\",\n        \"ApprovalStatus\": \"<string>\",\n        \"ItemApprovals\": [\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          },\n          {\n            \"SequenceId\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Timestamp\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Actor\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalAction\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatus\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"Approver\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"ApprovalActionProcessStatusMessage\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      }\n    ],\n    \"NextToken\": \"est voluptate et\"\n  },\n  \"errors\": [\n    {\n      \"code\": \"qui est dolor\",\n      \"message\": \"irure Duis\",\n      \"details\": \"proident laborum culpa eu laboris\"\n    },\n    {\n      \"code\": \"adipisicing\",\n      \"message\": \"ipsum magna fugiat\",\n      \"details\": \"aute officia\"\n    }\n  ]\n}"
    }
  ]
}