I'm working with dialogflow and Facebook messenger to create a chatbot. I've one parent intent named as userdata and this intent has followed up intent named as custom intent. I've three parameters in userdata (Parent Intent) and I want to access parameters of parent intent in followed up intent. So if you've any idea about how to access parameters in followed up intent please share with me.
Asked
Active
Viewed 1,067 times
1 Answers
6
Lets say you have three parameters param-a, param-b, param-c
.
You need to set a output-context in your parent intent (lets say context-1
), then in your follow-up intent you can access the parameters of your parent intent as #context-1.param-a
, #context-1.param-b
and #context-1.param-c
.
Hope it helps.

sid8491
- 6,622
- 6
- 38
- 64
-
Superb! Really helpful. – Majedur Mar 22 '23 at 06:35