This section provides details for the API's common set of error codes.
This API responds with HTTP problem error objects that provide details useful for debugging. The response revealed is contingent on a number of factors, including the type of operation you're performing and the specific error.
This example shows a response with a bad request error:
{
"type": "bad-request",
"title": "Bad Request",
"instance": "30109837-7ea6-4b14-a41d-50cfb12a4b03",
"status": 400,
"detail": "Erroneous data input",
"errors": [
{
"type": "bad-request",
"title": "Bad Request",
"detail": "Configuration with name UpdateConfiguration already exists in account 1234-3KNWKV.",
"illegalValue": "UpdateConfiguration",
"illegalParameter": "configurationName"
},
{
"type": "bad-request",
"title": "Bad Request",
"detail": "One or more ARL Property is already used in another configuration.",
"illegalValue": [
{
"propertyId": "123010"
}
],
"illegalParameter": "properties"
}
]
}