
Enables the retrieval of the available demographic groups provided by the IDEA REST API.
https://api.ideasystem.org/v1/demographic_groups
The response will be an HTTP 200 along with a JSON body that describes what demographic groups are available.
"data": { ... }"id": 32"parent_id": 2"sort_index": 32"name": "Faculty Members""abbreviation": "Faculty"This request will get all available demographic groups.
GET /v1/demographic_groups
HTTP 200
{
"data": [
{
"id": 1,
"sort_index": 1,
"name": "Faculty Members",
"abbreviation": "Faculty"
},
{
"id": 2,
"parent_id": 1,
"sort_index": 2,
"name": "Dean",
"abbreviation": "Dean"
}, ...
]
}