Chilkat Online Tools

DataFlex / Selling Partner API for Easy Ship / list Handover Slots

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vJson
    Handle hoJson
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sSlotId
    String sStartTime
    String sEndTime
    String sHandoverMethod
    String sAmazonOrderId
    Integer i
    Integer iCount_i
    String sTemp1
    Boolean bTemp1

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

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

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "marketplaceId": "officia aliqua cillum",
    //   "amazonOrderId": "incididunt",
    //   "packageDimensions": {
    //     "length": 77584762.21559949,
    //     "width": 53194956.12931797,
    //     "height": 43125271.61279134,
    //     "unit": "Cm",
    //     "identifier": "voluptate"
    //   },
    //   "packageWeight": {
    //     "value": 13064328.286832083,
    //     "unit": "Grams"
    //   }
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateString Of hoJson "marketplaceId" "officia aliqua cillum" To iSuccess
    Get ComUpdateString Of hoJson "amazonOrderId" "incididunt" To iSuccess
    Get ComUpdateNumber Of hoJson "packageDimensions.length" "77584762.21559949" To iSuccess
    Get ComUpdateNumber Of hoJson "packageDimensions.width" "53194956.12931797" To iSuccess
    Get ComUpdateNumber Of hoJson "packageDimensions.height" "43125271.61279134" To iSuccess
    Get ComUpdateString Of hoJson "packageDimensions.unit" "Cm" To iSuccess
    Get ComUpdateString Of hoJson "packageDimensions.identifier" "voluptate" To iSuccess
    Get ComUpdateNumber Of hoJson "packageWeight.value" "13064328.286832083" To iSuccess
    Get ComUpdateString Of hoJson "packageWeight.unit" "Grams" To iSuccess

    Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"
    Send ComSetRequestHeader To hoHttp "Accept" "application/json"

    Get pvComObject of hoJson to vJson
    Get ComPostJson3 Of hoHttp "https://sellingpartnerapi-na.amazon.com/easyShip/2022-03-23/timeSlot" "application/json" vJson To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess

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

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

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Send Destroy of hoResp
        Procedure_Return
    End

    Send Destroy of hoResp

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

    // {
    //   "amazonOrderId": "commodo amet",
    //   "timeSlots": [
    //     {
    //       "slotId": "dolore mollit culpa adipisicing",
    //       "startTime": "2012-03-14T23:06:09.962Z",
    //       "endTime": "1950-01-03T16:29:23.876Z",
    //       "handoverMethod": "Dropoff"
    //     }
    //   ]
    // }

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

    Get ComStringOf Of hoJResp "amazonOrderId" To sAmazonOrderId
    Move 0 To i
    Get ComSizeOfArray Of hoJResp "timeSlots" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "timeSlots[i].slotId" To sSlotId
        Get ComStringOf Of hoJResp "timeSlots[i].startTime" To sStartTime
        Get ComStringOf Of hoJResp "timeSlots[i].endTime" To sEndTime
        Get ComStringOf Of hoJResp "timeSlots[i].handoverMethod" To sHandoverMethod
        Move (i + 1) To i
    Loop



End_Procedure

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "marketplaceId": "officia aliqua cillum",
  "amazonOrderId": "incididunt",
  "packageDimensions": {
    "length": 77584762.21559949,
    "width": 53194956.12931797,
    "height": 43125271.61279134,
    "unit": "Cm",
    "identifier": "voluptate"
  },
  "packageWeight": {
    "value": 13064328.286832083,
    "unit": "Grams"
  }
}'
https://sellingpartnerapi-na.amazon.com/easyShip/2022-03-23/timeSlot

Postman Collection Item JSON

{
  "name": "list Handover Slots",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "easyShip",
        "2022-03-23",
        "timeSlot"
      ]
    },
    "description": "Returns time slots available for Easy Ship orders to be scheduled based on the package weight and dimensions that the seller specifies.\n\nThis operation is available for scheduled and unscheduled orders based on marketplace support. See **Get Time Slots** in the [Marketplace Support Table](doc:easy-ship-api-v2022-03-23-use-case-guide).\n\nThis operation can return time slots that have either pickup or drop-off handover methods - see **Supported Handover Methods** in the [Marketplace Support Table](doc:easy-ship-api-v2022-03-23-use-case-guide).\n\n**Usage Plan:**\n\n| Rate (requests per second) | Burst |\n| ---- | ---- |\n| 1 | 5 |\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 than 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": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "easyShip",
            "2022-03-23",
            "timeSlot"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "do anim",
          "description": "Your rate limit (requests per second) for this operation."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "do anim",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"amazonOrderId\": \"commodo amet\",\n  \"timeSlots\": [\n    {\n      \"slotId\": \"dolore mollit culpa adipisicing\",\n      \"startTime\": \"2012-03-14T23:06:09.962Z\",\n      \"endTime\": \"1950-01-03T16:29:23.876Z\",\n      \"handoverMethod\": \"Dropoff\"\n    }\n  ]\n}"
    },
    {
      "name": "Request has missing or invalid parameters and cannot be parsed.",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "easyShip",
            "2022-03-23",
            "timeSlot"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "do anim",
          "description": "Your rate limit (requests per second) for this operation."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "do anim",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"culpa qui dolore\",\n      \"message\": \"aute\",\n      \"details\": \"dolor ut\"\n    },\n    {\n      \"code\": \"tempor\",\n      \"message\": \"laboris nostrud enim magna ad\",\n      \"details\": \"ullamco pariatur est\"\n    }\n  ]\n}"
    },
    {
      "name": "The request's Authorization header is not formatted correctly or does not contain a valid token.",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "easyShip",
            "2022-03-23",
            "timeSlot"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "do anim",
          "description": "Your rate limit (requests per second) for this operation."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "do anim",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"minim nisi sint\",\n      \"message\": \"irure sed dolor\",\n      \"details\": \"officia consectetur Excepteur\"\n    },\n    {\n      \"code\": \"Ut do\",\n      \"message\": \"non nisi ipsum\",\n      \"details\": \"Ut\"\n    }\n  ]\n}"
    },
    {
      "name": "Indicates access to the resource is forbidden. Possible reasons include Access Denied, Unauthorized, Expired Token, or Invalid Signature.",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "easyShip",
            "2022-03-23",
            "timeSlot"
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RequestId",
          "value": "do anim",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"minim nisi sint\",\n      \"message\": \"irure sed dolor\",\n      \"details\": \"officia consectetur Excepteur\"\n    },\n    {\n      \"code\": \"Ut do\",\n      \"message\": \"non nisi ipsum\",\n      \"details\": \"Ut\"\n    }\n  ]\n}"
    },
    {
      "name": "The specified resource does not exist.",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "easyShip",
            "2022-03-23",
            "timeSlot"
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RateLimit-Limit",
          "value": "do anim",
          "description": "Your rate limit (requests per second) for this operation."
        },
        {
          "key": "x-amzn-RequestId",
          "value": "do anim",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"minim nisi sint\",\n      \"message\": \"irure sed dolor\",\n      \"details\": \"officia consectetur Excepteur\"\n    },\n    {\n      \"code\": \"Ut do\",\n      \"message\": \"non nisi ipsum\",\n      \"details\": \"Ut\"\n    }\n  ]\n}"
    },
    {
      "name": "The request payload is in an unsupported format.",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "easyShip",
            "2022-03-23",
            "timeSlot"
          ]
        }
      },
      "status": "Unsupported Media Type",
      "code": 415,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RequestId",
          "value": "do anim",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"minim nisi sint\",\n      \"message\": \"irure sed dolor\",\n      \"details\": \"officia consectetur Excepteur\"\n    },\n    {\n      \"code\": \"Ut do\",\n      \"message\": \"non nisi ipsum\",\n      \"details\": \"Ut\"\n    }\n  ]\n}"
    },
    {
      "name": "The frequency of requests was greater than allowed.",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "easyShip",
            "2022-03-23",
            "timeSlot"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RequestId",
          "value": "do anim",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"minim nisi sint\",\n      \"message\": \"irure sed dolor\",\n      \"details\": \"officia consectetur Excepteur\"\n    },\n    {\n      \"code\": \"Ut do\",\n      \"message\": \"non nisi ipsum\",\n      \"details\": \"Ut\"\n    }\n  ]\n}"
    },
    {
      "name": "An unexpected condition occurred that prevented the server from fulfilling the request.",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "easyShip",
            "2022-03-23",
            "timeSlot"
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RequestId",
          "value": "do anim",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"minim nisi sint\",\n      \"message\": \"irure sed dolor\",\n      \"details\": \"officia consectetur Excepteur\"\n    },\n    {\n      \"code\": \"Ut do\",\n      \"message\": \"non nisi ipsum\",\n      \"details\": \"Ut\"\n    }\n  ]\n}"
    },
    {
      "name": "Temporary overloading or maintenance of the server.",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marketplaceId\": \"officia aliqua cillum\",\n  \"amazonOrderId\": \"incididunt\",\n  \"packageDimensions\": {\n    \"length\": 77584762.21559949,\n    \"width\": 53194956.12931797,\n    \"height\": 43125271.61279134,\n    \"unit\": \"Cm\",\n    \"identifier\": \"voluptate\"\n  },\n  \"packageWeight\": {\n    \"value\": 13064328.286832083,\n    \"unit\": \"Grams\"\n  }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/easyShip/2022-03-23/timeSlot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "easyShip",
            "2022-03-23",
            "timeSlot"
          ]
        }
      },
      "status": "Service Unavailable",
      "code": 503,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "x-amzn-RequestId",
          "value": "do anim",
          "description": "Unique request reference identifier."
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    {\n      \"code\": \"minim nisi sint\",\n      \"message\": \"irure sed dolor\",\n      \"details\": \"officia consectetur Excepteur\"\n    },\n    {\n      \"code\": \"Ut do\",\n      \"message\": \"non nisi ipsum\",\n      \"details\": \"Ut\"\n    }\n  ]\n}"
    }
  ]
}