Retrieve results over time for a topic and group

GET /api/v1/topics/{topic_code}/results/groups/{group_identifier}/history

Path parameters

Responses

  • Results for topic and group, broken down by date

    Hide response attributes Show response attributes array[object]
GET /api/v1/topics/{topic_code}/results/groups/{group_identifier}/history
curl \
 -X GET https://app.fridaypulse.com/api/v1/topics/{topic_code}/results/groups/{group_identifier}/history \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "sample_date": "2019-07-03",
    "score": 75,
    "response_rate": 58,
    "response_count": 114,
    "total_count": 198
  }
]
Response examples (200)
[
  {
    "sample_date": "string",
    "score": 42,
    "response_rate": 42,
    "response_count": 42,
    "total_count": 42
  }
]