List the groups the user belongs to
The ID of the user
GET //users/{userId}/groups HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*
successful operation
{ "groups": { "id": "text", "description": "text" } }
Add the user to a group
The ID of the group
PUT //users/{userId}/groups/{groupId} HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*
{}
Remove the user from the group
DELETE //users/{userId}/groups/{groupId} HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*