Forums/API

Groups API

Thomas Pedersen
posted this on Feb 16 00:08

Each user has a type, which determines their administrative privileges.

Show group

Returns a single group

GET /api/v1/groups/{id}.xml
<group>
<name>Marketing</name>
</group>

List all

Returns all groups in one list. The body of each group is the same as for show group.

GET /api/v1/groups.xml
<groups type="array">
<group>
...
</group>
<group>
...
</group>
</groups>