I am new to Dialogflow and I have created a bot that queries different user information through different intents (e.g. first name, name, birthdate etc.). Now I am using a function in fulfillment where I need the parameter values from different intents.
const {last_name, street, house_no,
zip_code, birthdate,
email} = agent.parameters;
In the output of the function the parameters are labeled "undefined". I guess because agent.parameters only refers to the intent that triggers the webhook, it does not capture the parameter values from all the other intents. Is there a way how to get the parameter values from the other intents?