Please note that all endpoints have similar error responses. Any endpoint that doesn’t follow the pattern shown on this page will contain the error response on it’s own page.

Error Response Format

Unsuccessful Request Error Response

{
    "status": "300",
    "title": "Error processing request",
    "data": "Custom message, depending on the endpoint"
}

Failed Validation Error Response

{
    "status": "422",
    "title": "Post request error",
    "detail": "The request cannot be processed. There were some validation errors.",
    "errors": "Custom error messages, depending on the endpoint"
}