helpjuice.errors

Module Contents

exception helpjuice.errors.UnprocessableEntity(request, response)

Bases: requests.HTTPError

An HTTP 422 Unprocessable Entity error occurred.

https://help.helpjuice.com/en_US/api-v3/api-v3#errors

The request could not be processed, usually due to a missing or invalid parameter.

The response will also include an error object with an explanation of fields that are missing or invalid. Here is an example:

HTTP/1.1 422 Unprocessable Entity


{
  "errors": [
    {
      "email": "is not valid."
    }
  ]
}