05-12-2023 04:44 PM
Hi @WxCC administrators and flow creators.
I am wanting to configure my callback in flow to have a continuous opt in using hash. i have tried several variables but non seem to work. I am using Cisco WxCC Flow Designer. Has anyone been able to configure their callback options so that you can opt in by press hash at any time, not just in the Call Back block? if so, what tool did you use to input the code (parse, condition etc)
thanks heaps
{% if input.equals('#') %}
{# Handle callback logic here #}
{% endif %}
// Assuming you have captured user input and stored it in a variable called 'input'
if (input === '#') {
// Handle callback logic here
// This could involve making an AJAX request, updating data, or performing any other desired action
// For demonstration purposes, let's log a message to the console
console.log('Callback initiated!');
}
05-16-2023 06:11 AM
I guess you can loop the callback block in Flow Designer. Meaning each and every step it will go to callback block in Main Flow. Additionally you can add callback block in Event Flows as well. It would be great if you share snippet of your flow.
05-17-2023 02:43 AM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide