Delete Task
Delete task (irreversible)
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
task_id | number | Required | Task ID |
hook | boolean | Optional | Execute hooks |
silent | boolean | Optional | No notifications |
Examples
MCP Tool Call
{
"name": "podio_deleteTask",
"arguments": {
"task_id": 12345,
"hook": true,
"silent": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/deleteTask \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"task_id": 12345,
"hook": true,
"silent": true
}'