Sets whether the group is read-only or not.
HTTP Method | URL | Requires Auth |
---|
POST | /api/v1/groups.setReadOnly | yes |
Key | Example Value | Description |
---|
roomId * | ByehQjC44FwMei5LbX | The group ID. |
readOnly * | true | Boolean value of whether the group is read-only or not. |
curl -H "X-Auth-Token: 9HqLlyZOugoStsXCUfD_0YdwnNnunAJF8V47U3QHXSq" \
-H "X-User-Id: aobEdbYhXfu5hkeqG" \
-H "Content-type: application/json" \
http://localhost:3000/api/v1/groups.setReadOnly \
-d '{
"roomId": "ByehQjC44FwMei5LbX",
"readOnly": true }'
{
"group": {
"_id": "ByehQjC44FwMei5LbX",
"name": "testing-private",
"t": "p",
"msgs": 0,
"u": {
"_id": "aiPqNoGkjpNDiRx6d",
"username": "goose160"
},
"ts": "2017-01-05T18:02:50.754Z",
"ro": true,
"sysMes": true,
"_updatedAt": "2017-01-05T19:02:24.429Z",
"usernames": [
"goose160",
"graywolf336"
],
"joinCodeRequired": true,
"muted": []
},
"success": true
}
Version |
Description |
0.49.0 |
Added |