delete_task
Remove tasks from Zoho Projects by specifying project and task IDs to maintain organized project workflows and eliminate completed or unnecessary items.
Instructions
Delete a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | Project ID | |
task_id | Yes | Task ID |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "Project ID",
"type": "string"
},
"task_id": {
"description": "Task ID",
"type": "string"
}
},
"required": [
"project_id",
"task_id"
],
"type": "object"
}