Hi, I have a few questions about secure flows
I am planning to use a secure flow that will call a bot flow to capture ssn
1st question)
Is all audio masked in secure flow regardless of if we make use of secure variables or not in the secure flow?
Is all logging disabled in secure flow regardless of if we make use of secure variables or not in the secure flow?
2nd question)
If a secure flow calls a bot flow and that bot flow is not using secure data variables will audio and logs be present of the interaction that happened in the bot?
3rd question)
is there a way to have bot flow return a secure variable to the calling secure flow?
Is all audio masked in secure flow regardless of if we make use of secure variables or not in the secure flow?
Yes
Is all logging disabled in secure flow regardless of if we make use of secure variables or not in the secure flow?
Yes, unless you do something insecure with the data. For example use it as an input to a data action or write it out to participant data. Architect would prevent that if you used a secure variable .
If a secure flow calls a bot flow and that bot flow is not using secure data variables will audio and logs be present of the interaction that happened in the bot?
No
is there a way to have bot flow return a secure variable to the calling secure flow?
No. Secure variable can never be an output. However you can use the extract secure data to create an unsecure variable with the secure variable's value and make that an output. Do that only if the value doesn't need to really be secure, which is not the case for a SSN. The other workaround is for you to create a database or something to securely store the SSN value in, use a call secure data action in the bot flow to save the value off, then another call secure data action in the secure flow to retrieve the value.