207 - Repository File Not Found¶
| API Error Code | 207 | 
| HTTP Status Code | HTTP 400 Bad Request | 
| Error Text | The file was not found in the repository | 
| Description | A file specified in a request that should have been in the repository was not found there. This could be a problem with the path or the revision. This will provide file and revision keys containing the file path and revision that failed. | 
Examples¶
application/json¶
{
  "err": {
    "code": 207, 
    "msg": "The file was not found in the repository"
  }, 
  "file": "/src/foobar.c", 
  "revision": 42, 
  "stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
 <stat>fail</stat>
 <err>
  <msg>The file was not found in the repository</msg>
  <code>207</code>
 </err>
 <file>/src/foobar.c</file>
 <revision>42</revision>
</rsp>
