CSAT Survey Feedback in Freshdesk Messaging

Is it possible to get the feedback score and any verbatim text via the API when a customer leaves feedback in a Freshchat CSAT survey?

I have seen that could use the Freshdesk Messaging’s Extract APIs?

CSAT-Score event is available as part of the Extract API - Freshchat

Sample cURL -

curl --location --request POST 'https://api.freshchat.com/v2/reports/raw/' 
--header 'Authorization: Bearer <TOKEN_HERE>' 
--data-raw '{
    "start": "2021-10-22T00:00:00.000Z",
    "end"  : "2021-10-23T00:00:00.000Z",
    "event": "CSAT-Score",
    "format": "csv"
}'
2 Likes

Thanks Abhilash. Much appreciated.

2 Likes

This topic was automatically closed 6 days after the last reply. New replies are no longer allowed.