This documentation covers Review Board 4.0.
 You can select a version above or 
 view the latest documentation.
 
105 - Invalid Form Data
| API Error Code | 
105 | 
| HTTP Status Code | 
HTTP 400 Bad Request | 
| Error Text | 
One or more fields had errors | 
| Description | 
The data sent in the request (usually when using HTTP PUT or POST) had
errors. One or more fields failed to validate correctly. 
This comes with a fields key containing a mapping of field names to
lists of error texts. 
 | 
Examples
application/json
{
  "err": {
    "code": 105, 
    "msg": "One or more fields had errors"
  }, 
  "fields": {
    "myint": [
      "`abc` is not an integer"
    ]
  }, 
  "stat": "fail"
}