Vikash Poddar
11/23/2024, 7:01 AMCeligo AI
11/23/2024, 7:01 AMAI generated answer (using internal Slack threads):****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ****** To create a task from a user event script and call a scheduled script that will execute after 1 minute, you can follow the below steps: 1. In your user event script, at the end of your logic, create a task for the scheduled script using the
task.createjavascript
var scriptTask = task.create({
    taskType: task.TaskType.SCHEDULED_SCRIPT,
    scriptId: 'customscript_your_scheduled_script_id'
});
scriptTask.submit();'customscript_your_scheduled_script_id'Celigo AI
11/23/2024, 7:01 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.850651085
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.833451211
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.82316649
Celigo AI
11/23/2024, 7:02 AM