List available group types

GET /grouptypes/list

Get a list of all the group types available, used to collect groups together

Responses

  • 200

    OK

    Hide response attributes Show response attributes array[object]
    • id integer

      ID to be used in other calls in the system

    • name string

      A public name for this group type

    • groupCount integer

      How many active, hibernated and expired groups are a part of this group type

GET /grouptypes/list
curl \
 -X GET https://YOURSITE.infoodle.com/apiv2/grouptypes/list \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 1,
    "name": "Program Groups",
    "groupCount": 23
  }
]