This documentation covers Review Board 1.6.
 You can select a version above or 
 view the latest documentation.
 
103 - Not Logged In
| API Error Code | 103 | 
| HTTP Status Code | HTTP 401 Unauthorized | 
| Error Text | You are not logged in | 
| HTTP Headers | WWW-Authenticate | 
| Description | The resource requires that your client is logged in, and you’re not logged
in yet. This is sent along with WWW-Authenticate HTTP headers. See Authenticating for more information. | 
Examples
application/json
{
  "err": {
    "code": 103, 
    "msg": "You are not logged in"
  }, 
  "stat": "fail"
}
 
application/xml
<?xml version="1.0" encoding="utf-8"?>
<rsp>
 <stat>fail</stat>
 <err>
  <msg>You are not logged in</msg>
  <code>103</code>
 </err>
</rsp>