Currently I integrated an agent of Dialgoflow CX with Voximplant. I am having trouble adding an EventListener with CCAI.Conversation. It seems that I need to add the conversational profile link of Dialogflow CX, but I'm not sure where to find it.
agent.addEventListener(CCAI.Events.Agent.Started, () => {
conversation = new CCAI.Conversation({ agent, profile: { name: profile }, project: appName });
conversation.addEventListener(CCAI.Events.Conversation.Created, () => {
isConversationCreated = true;
createParticipant();
});
});