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"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<fields>
<myint>
<array>
<item>`abc` is not an integer</item>
</array>
</myint>
</fields>
<stat>fail</stat>
<err>
<msg>One or more fields had errors</msg>
<code>105</code>
</err>
</rsp>