This documentation covers Review Board 1.6.
You can select a version above or
view the latest documentation.
208 - Invalid User
API Error Code |
208 |
HTTP Status Code |
HTTP 400 Bad Request |
Error Text |
User does not exist |
Description |
The username specified in a request does not exist
on the server. This isn’t related to
authentication, but rather for usernames that are
passed as parameters in some request, such as when
creating a review request as another user. |
Examples
application/json
{
"err": {
"code": 208,
"msg": "User does not exist"
},
"stat": "fail"
}
application/xml
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<err>
<msg>User does not exist</msg>
<code>208</code>
</err>
</rsp>