Retrieve list of all group types

GET /api/v1/group-types

Responses

  • List of group types

    Hide response attributes Show response attributes array[object]
    • code string

      The group type code

    • name string

      The group type name

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