Error Responses
The Warrant API can return any of the following error codes:
HTTP Response Code | Meaning |
---|---|
400 Bad Request | Your request is invalid. You may be missing a required parameter or may have passed an invalid value for a parameter. |
401 Unauthorized | User is not authorized for this operation. |
403 Forbidden | User does not have access to this particular endpoint or resource. |
404 Not Found | The specified resource could not be found. |
405 Method Not Allowed | You attempted to use a method not supported or allowed by the API. |
429 Too Many Requests | You performed too many requests in a given period of time. Slow down! |
500 Internal Server Error | Our servers had a problem while serving your request. Please Try again later. |
503 Service Unavailable | We're temporarily offline for maintenance or other reasons. Please try again later. |
An error response from the API will contain JSON structured like this:
{
"code": "invalid_parameters",
"message": "Invalid typeId"
}