The structure of API error responses sent by Ippocloud.
All successful responses return the HTTP status code 200. In case of failures, Ippocloud APIs return JSON error responses with parameters that explain the failure reasons.
The error response contains error, code , description parameters that help you diagnose and solve the error.
{
"error": {
"code": "UNAUTHORIZED",
"description": "The api key provided is invalid"
}
}
error | object The error object. |
code | string Type of the error. |
description | string Description of the error. |