deleteTask
Remove one or more tasks from a specified project by providing the project ID and task IDs. Deleting a task also removes its subtasks and dependency links. Returns the count of successfully deleted tasks.
Instructions
Deletes one or more tasks within a specified project. Requires the project ID and an array of task IDs to delete. Note: Deleting a task also deletes its subtasks and dependency links due to database cascade rules. Returns the count of successfully deleted tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The unique identifier (UUID) of the project containing the tasks to delete. This project must exist. | |
task_ids | Yes | An array of task IDs (UUIDs, 1-100) to be deleted from the specified project. |