Timeout for Input dialog box

we have an attended bot, for which we are authenticating a user using OTP sent to his email ID. We are taking the OTP as an input from user through an Input dialog box activity. We want this input dialog box to timeout after a certain period of time. how can we achieve this?

Hi @varunkumar.m

You could use Parallel activity.
You should put dialog into a workflow and the workflow should be started with Isolated = YES.
Condition property of the Parallel activity should be set to TRUE to finish the whole activity once the first workflow finish.
ContinueOnError property of the Parallel activity should be set to TRUE to ignore the error of terminating dialog.

1 Like

thanks… this worked… :slight_smile:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.