ErrorResponse (object)
| Field | Type | Description |
|---|---|---|
| errors | object | Dynamic list of errors object (additional properties) array Elements string |
| message | string | Description of the error |
Example (JSON)
{
"message": "The password field is required.",
"errors": {
"password": [
"The password field is required."
],
"email": [
"The email field must be a valid email address."
]
}
}