This documentation covers Review Board 1.6.
 You can select a version above or 
 view the latest documentation.
 
100 - Does Not Exist
| API Error Code | 100 | 
| HTTP Status Code | HTTP 404 Not Found | 
| Error Text | Object does not exist | 
| Description | One or more of the IDs provided in the URL doesn’t exist or isn’t valid in
that level of the resource tree. | 
Examples
application/json
{
  "err": {
    "code": 100, 
    "msg": "Object does not exist"
  }, 
  "stat": "fail"
}
 
application/xml
<?xml version="1.0" encoding="utf-8"?>
<rsp>
 <stat>fail</stat>
 <err>
  <msg>Object does not exist</msg>
  <code>100</code>
 </err>
</rsp>