Error Handling
How the Ever Gauzy API handles errors and how to interpret error responses.
Error Response Formatโ
All error responses follow a consistent structure:
{
"statusCode": 400,
"message": "Error description",
"error": "Bad Request"
}
For validation errors, message may be an array:
{
"statusCode": 400,
"message": [
"firstName must be a string",
"firstName should not be empty",
"email must be an email"
],
"error": "Bad Request"
}