deleteTask
Remove a task from Teamwork projects by specifying its unique ID. Simplifies task management through direct interaction with the Teamwork API.
Instructions
Delete a task from Teamwork
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | Yes | The ID of the task to delete |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "The ID of the task to delete",
"type": "integer"
}
},
"required": [
"taskId"
],
"type": "object"
}