This section provides details on the data object that reflects the API's common response to error cases, and lists the API's range of response status codes for both error and success cases.
In case of errors, the API returns an HTTP Problem JSON object with the application/problem+json
media type. In this example, an attempt was made to read a secret store with an ID of 100. The server failed to recognize this value as a valid ID, and responded with an HTTP 404 and HTTP problem describing the error.
{
"type" : "https://akzz-xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxx.luna.akamaiapis.net/api/secret-management/errors#core.entity-not-found",
"title" : "The requested entity could not be found",
"detail" : "SecretStore 100 does not exist",
"instance" : "https://akzz-xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxx.luna.akamaiapis.net/api/secret-management/v1/secret-stores/100#6e5d7651da832852",
"entityType" : "SecretStore",
"entityId" : 100
}