API Documentation Groups
Actions
- GET https://thecampuswire.com/organization/org_name/groups.xml – retrieve a list of all groups
- GET https://thecampuswire.com/groups/1.xml – gets an individual group
- POST https://thecampuswire.com/organization/org_name/groups.xml – creates a new group
- DELETE https://thecampuswire.com/groups/1.xml – deletes a group
GET /organizations/org_name/groups.xml
Here is example of a group list
<?xml version="1.0" encoding="UTF-8"?>
<groups type="array">
<group>
<id type="integer">43</id>
<name>test_group_1</name>
</group>
<group>
<id type="integer">44</id>
<name>test_group_2</name>
</group>
</groups>
GET /groups/1.xml (gets an individual group)
<?xml version="1.0" encoding="UTF-8"?> <group> <id type="integer">44</id> <name>asdf</name> </group>
POST /organizations/org_name/groups.xml (create a new group)
Valid attributes
- name