Showing and creating groups. The authenticated user has to be an administrator to perform these actions.
Returns a single group and the users associated with it.
Status: 200 OK
<group>
<id type="integer">1</id>
<name>Partners</name>
<users>
<user>
...
</user>
<user>
...
</user>
</users>
</group>
Returns a collection of groups.
Status: 200 OK
<groups>
<group>
...
</group>
<group>
...
</group>
</groups>
Creates a new empty group. Users are added to the group through memberships.
<group>
<name>Partners</name>
</group>
Status: 200 OK
Status: 201 Created
Location: https://example.highrisehq.com/groups/#{new-group-id}.xml
<group>
...
</group>
Updates an existing group with a new name.
<group>
<name>Senior Partners</name>
</group>
Status: 200 OK
Destroys the group at the referenced URL.
Status: 200 OK