This documentation covers Review Board 1.6.
 You can select a version above or 
 view the latest documentation.
 
217 - Missing User Key
| API Error Code | 217 | 
| HTTP Status Code | HTTP 403 Forbidden | 
| Error Text | A public SSH key was requested, but no SSH key was available to send | 
| Description | Review Board attempted to authenticate with a repository that required a
public SSH key, but no SSH key was configured on Review Board. | 
Examples
application/json
{
  "err": {
    "code": 217, 
    "msg": "A public SSH key was requested, but no SSH key was available to send"
  }, 
  "stat": "fail"
}
 
application/xml
<?xml version="1.0" encoding="utf-8"?>
<rsp>
 <stat>fail</stat>
 <err>
  <msg>A public SSH key was requested, but no SSH key was available to send</msg>
  <code>217</code>
 </err>
</rsp>