206 - Invalid Repository¶
| API Error Code | 206 | 
| HTTP Status Code | HTTP 400 Bad Request | 
| Error Text | The repository path specified is not in the list of known repositories | 
| Description | The repository path or ID specified in the request isn’t known by Review Board. This will provide a repository key containing the path or ID that failed. | 
Examples¶
application/json¶
{
  "err": {
    "code": 206, 
    "msg": "The repository path specified is not in the list of known repositories"
  }, 
  "repository": "http://svn.example.com/ducks", 
  "stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
 <stat>fail</stat>
 <err>
  <msg>The repository path specified is not in the list of known repositories</msg>
  <code>206</code>
 </err>
 <repository>http://svn.example.com/ducks</repository>
</rsp>
