ErrorResponse (object)
| Feld | Typ | Beschreibung |
|---|---|---|
| errors | object | Dynamic list of errors object (zusätzliche Properties) array Elemente string |
| message | string | Description of the error |
Beispiel (JSON)
{
"message": "The password field is required.",
"errors": {
"password": [
"The password field is required."
],
"email": [
"The email field must be a valid email address."
]
}
}