Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.08 KB

File metadata and controls

34 lines (24 loc) · 1.08 KB

Add Group to List

Adds the group/channel back to the user's list of groups.

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

Body Parameters

KeyExample ValueDescription
roomId*ByehQjC44FwMeiLbXThe group 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.open \
     -d '{ 
          "roomId": "ByehQjC44FwMeiLbX" }'

Example Response

{
   "success": true
}

Change Log

Version Description
0.48.0 Added