Enables the retrieval of the details for a specified demographic group.
https://api.ideasystem.org/v1/demographic_group/12
The response will be an HTTP 200 along with a JSON body that describes what demographic groups are available. If an error occurs with the parameters that are passed in, an HTTP 404 will be returned along with an error message in a JSON body. All other errors will return an HTTP 500 (Internal Server Error).
"id": 32
"parent_id": 1
"sort_index": 5
"name": "Faculty Members"
"abbreviation": "Faculty"
This request will get the details for a demographic group with ID 2.
GET /v1/demographic_group/2
HTTP 200 { "id": 2, "parent_id": 1, "sort_index": 2, "name": "Faculty Members", "abbreviation": "Faculty" }