Retrieve a list of all topics.

GET /api/v1/topics

Responses

  • 200 application/json

    List of topics

    Hide response attributes Show response attributes object
    • code string

      The topic code

    • name string

      The name of the topic

GET /api/v1/topics
curl \
 --request GET 'https://app.fridaypulse.com/api/v1/topics' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "code": "team-relationships",
    "name": "Team relationships"
  }
]