This documentation covers Review Board 1.6.
You can select a version above or
view the latest documentation.
223 - Group Already Exists
API Error Code |
223 |
HTTP Status Code |
HTTP 409 Conflict |
Error Text |
A group with this name already exists. |
Description |
An attempt was made to create a review group, but that group already
exists. |
Examples
application/json
{
"err": {
"code": 223,
"msg": "A group with this name already exists."
},
"stat": "fail"
}
application/xml
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<err>
<msg>A group with this name already exists.</msg>
<code>223</code>
</err>
</rsp>