Retrieve all user feedback responses (such as LIKE, DISLIKE) for a campaign
Response format | JSON |
---|---|
Requires authentication? | Yes |
unique optional | Only count one of any response type (such as LIKE) per subscriber |
---|---|
responses optional | Only return counts for specific responses (e.g. [ 'LIKE' ]). By default will return counts for all responses. |
curl -X GET \
-u '[SID]:[TOKEN]' \
-H 'Content-Type: application/json' \
'https://api.essential.to/v2/channels/eJ1WDpPBufJuDDYVO5xrKg/campaigns/LV-6TOPByeGAQQcGXNoHxA/summary/feedback'
# Sample response
[
{
"response":"LIKE",
"value":100,
"count":62
},
{
"response":"DISLIKE",
"value":-100,
"count":28
}
]
Python coming soon.
Node coming soon.