Hello, I want to pass user information at the beginning of a conversation to dialogflow. In Dialogflow History it detects the event and the name of it but my added parameters are not shown and are not added as values to the corresponding parameters of the welcome Intent. I'm not sure if the mistake is in my sent message or in the declaration of the parameters and I could not find any solutions in the Df-documentaion. I tried these structures:
{
session: sessionPath,
queryInput: {
event: {
name: "init",
data: {
name: name,
email: email
},
languageCode: languageCode
},
},
}
and
{
session: sessionPath,
queryInput: {
event: {
name: "init",
parameters: {
name: name,
email: email
},
languageCode: languageCode
},
},
}
Thanks for help,
Best regards Peer