We can host Review Board for you! Give us a try at RBCommons.

This documentation covers the in-development release of Review Board. You can see the latest stable docs or all previous versions.

218 - Repository Authentication Error

API Error Code 218
HTTP Status Code HTTP 403 Forbidden
Error Text Unable to authenticate with the repository using the provided credentials
Description

Review Board attempted to authenticate with a repository, but the proper login information wasn’t specified.

The specific reason it failed is returned in reason along with the error.

Examples

application/json

{
  "err": {
    "code": 218, 
    "msg": "Unable to authenticate with the repository using the provided credentials"
  }, 
  "stat": "fail"
}

application/xml

<?xml version="1.0" encoding="utf-8"?>
<rsp>
 <stat>fail</stat>
 <err>
  <msg>Unable to authenticate with the repository using the provided credentials</msg>
  <code>218</code>
 </err>
</rsp>