If an error occurs, this API responds with JSON objects that provide information you can use to debug the problem.

This example shows a bad request error, where the title is a descriptive label for the overall problem, and the instance may be useful if you need to communicate the problem to your Akamai support representative. It also includes an optional errors array that lists potentially more than one problem detected in the request.

{
    "status": 400,
    "title": "Validation failed",
    "instance": "e943f013-400a-45cf-8fd9-a2d1a37fefa1",
    "type": "[URI defining type]",
    "errors": [
        {
            "detail": "description must not be null",
            "title": "Constraint validation failed",
            "invalidField": "description",
            "invalidValue": null
        }
    ]
}

For details on information contained in the error responses, refer to Error response syntax.