Errors

The Riipen API uses standard HTTP response codes to indicate success or failure of API requests.

Error format

All errors returned will take the following structure:

{
  "message": "Experience validation failed",
  "status": 422,
  "id": "unprocessable_entity",
  "errors": {
    "name": [{ "message": "is a required property" }]
  }
}
  • id - A unique identifier for the type of error.
  • message - A display-friendly description.
  • status - The HTTP status code returned for the error.
  • errors (optional) - An object of "field specific" errors, useful for identifying which field caused the request to fail and why. Each key in the object corresponds to a field that failed validation. The values will each be an array of error objects. Each error object has a display-friendly message field.