203 - Invalid Change Number¶
| API Error Code | 203 |
| HTTP Status Code | HTTP 404 Not Found |
| Error Text | The change number specified could not be found |
| Description | The change number specified when creating a review request could not be found in the repository. This is used for repositories that keep track of changeset information server-side, such as Perforce. |
Examples¶
application/json¶
{
"err": {
"code": 203,
"msg": "The change number specified could not be found"
},
"stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<err>
<msg>The change number specified could not be found</msg>
<code>203</code>
</err>
</rsp>