This article describes in detail how to set up automatic callbacks after a certain period of time using the BPL function.
Add an Expression block to the script.
Enter the function:
$date = dt.add(@now, 3600)
The dt.add function is used to add a certain number of time units to the specified date and time, with the time specified in seconds. For example, if you need to add an hour, enter the number 3600, if you need to add 3 hours, enter 10800, and so on.
From the Expression block, draw an arrow to the Result block and set the following parameters:
{date}, which was obtained as a result of all actions.The bot will reach the Result block during the call, after which a callback will be scheduled for the specified date/time from the variable {date}.
Callbacks via the Result block are not subject to task rules. Even if a limit is set, for example, 3 callbacks, this block allows you to set an unlimited number of them.