Delete the completed task record related to a Task for a specific Forms App
const formsAppId = 1const taskId = 2const completedTask = await scheduledTasksService.completeTask({ formsAppId, taskId,})await deleteCompletedTask(completedTask.id) Copy
const formsAppId = 1const taskId = 2const completedTask = await scheduledTasksService.completeTask({ formsAppId, taskId,})await deleteCompletedTask(completedTask.id)
Optional
Delete the completed task record related to a Task for a specific Forms App
Example