220 - Diff Too Big¶
API Error Code | 220 |
HTTP Status Code | HTTP 400 Bad Request |
Error Text | The specified diff file is too large |
Description | A diff was uploaded that was too large to process. The size limit may vary between servers. The specific reason it failed is provided in reason, and the maximum diff size in bytes is provided in max_size. |
Examples¶
application/json¶
{
"err": {
"code": 220,
"msg": "The specified diff file is too large"
},
"max_size": 200000,
"reason": "The supplied diff file is too large",
"stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<err>
<msg>The specified diff file is too large</msg>
<code>220</code>
</err>
<reason>The supplied diff file is too large</reason>
<max_size>200000</max_size>
</rsp>