Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.1 KB

File metadata and controls

34 lines (24 loc) · 1.1 KB

Close Group

Removes the group/channel from the user's list of groups, only if you're part of the group.

HTTP MethodURLRequires Auth
POST/api/v1/groups.closeyes

Body Parameters

KeyExample ValueDescription
roomId*HyehQjC44FwMeiLbXThe groups ID.

Example Call

curl -H "X-Auth-Token: 9HqLlyZOugoStsXCUfD_0YdwnNnunAJF8V47U3QHXSq" \
     -H "X-User-Id: aobEdbYhXfu5hkeqG" \
     -H "Content-type: application/json" \
     http://localhost:3000/api/v1/groups.close \
     -d '{ 
          "roomId": "HyehQjC44FwMeiLbX" }'

Example Response

{
   "success": true
}

Change Log

Version Description
0.48.0 Added