I have a Voximplant application with Dialogflow CX integration. I want to pass parameters to Dialogflow CX directly, how do I do it?
Asked
Active
Viewed 83 times
1 Answers
0
You can do it like this:
conversationParticipant.analyzeContent({
eventInput: {
name: "WELCOME",
languageCode: languageCode,
parameters: {
caller_id: call.callerid(),
called_number: call.number()
},
},
});

Ksenia Cherkasova
- 101
- 5