Is there any possible ways to pass slot values from one form to other.
you can do any slotmapping in any form
It’s not necessary to pass slots around, they are available on the tracker store. Once a slot is set (by a custom action, form or via auto_fill
) it can be access by any other action or form:
postal_code = tracker.get_slot("postal_code")
if the form is reset, how can we access.
save the data temporary in a file before to reset the form
okay…Thank you @UlisesVD