0

I want to convert user conversations from Dialogflow to txt file or excel sheet. Well, I can check the history of conversation from history tab shown in dialogflow console. And I want to store this to a excel sheet.

I have also checked the api's of Dialogflow and didn't found anything that can solve my Problem.

SMshrimant
  • 638
  • 9
  • 15

1 Answers1

0

As explained in this post, currently there is not direct way to store the Dialogflow chat history. What can be done is to retrieve messages with fulfillments.

Check this GitHub repository for the logic to retrieve messages. The API fields queryText and fulfillmentText are the ones you want.

alp
  • 642
  • 5
  • 13