Groups
Update A Group
Updates the properties of an existing group. You must supply at least the group name. Provide a parent_id to change the group's parent. If a members array is supplied it REPLACES the group's entire membership with exactly those user IDs (members omitted from the array are removed) — to adjust membership, send the full intended member list, or use the dedicated members endpoint.
put/groups/{id}
Path parameters
idinteger required
VOMO Group ID
Request body
Example request
{
"name": "Morning Crew",
"description": "A group for the morning crew to organize",
"member_moniker": "Member",
"subgroup_moniker": "Subgroup"
}Response
Returns the updated group record with all current field values.
Example response
{
"data": {
"name": "Afternoon Team",
"description": "This team will take over for the morning team at 12pm",
"has_subgroups": true,
"created_at": "2016-03-07T07:49:41+00:00",
"updated_at": "2016-03-07T07:49:41+00:00"
}
}