action attio_delete_task { label: "Delete a task" description: "Delete a task by ID.\n\nRequired scopes: `task:read-write`." provider: attio method: DELETE path: "/v2/tasks/{task_id}" encoding: json scopes: ["task:read-write"] input: { type: "object" properties: { task_id: { type: "string" format: "uuid" description: "The ID of the task to delete." } } required: ["task_id"] additionalProperties: false } output: { type: "object" description: "Success" properties: {} } }