105 - Invalid Form Data¶
API Error Code | 105 |
HTTP Status Code | |
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 |
Examples¶
application/json¶
{
"err": {
"code": 105,
"msg": "One or more fields had errors",
"type": "request-field-error"
},
"fields": {
"myint": [
"`abc` is not an integer"
]
},
"stat": "fail"
}