Reputation: 3161
I have a use case where I need more richer chat messages with complex GUI messages which are not supported in the existing Dialogflow integrations list. So I am planning to create my own chat window and UI.
Unfortunately, I am not able to find any Dialogflow docs which explains how can I submit user utterances to Dialogflow and get the response back so that I can update my custom chat UI.
How can I submit user utterances from custom Chat UI to Dialogflow and get the response back?
Upvotes: 1
Views: 579
Reputation: 50741
It sounds like you want the Detect Intent API, which lets you send messages to Dialogflow for it to turn into an Intent, possibly send it to a fulfillment server, and then send all this back to your client.
Upvotes: 2