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"
  }, 
  "reason": "The username is invalid.", 
  "stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
 <stat>fail</stat>
 <reason>The username is invalid.</reason>
 <err>
  <msg>Unable to authenticate with the repository using the provided credentials</msg>
  <code>218</code>
 </err>
</rsp>
