Retrieve list of all group types

GET /api/v1/group-types

Responses

  • 200 application/json

    List of group types

    Hide response attributes Show response attributes object
    • code string

      The group type code

    • name string

      The group type name

GET /api/v1/group-types
curl \
 --request GET 'https://app.fridaypulse.com/api/v1/group-types' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "code": "teams",
    "name": "Teams"
  },
  {
    "code": "locations",
    "name": "Locations"
  }
]