Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X DELETE https://kliio.app/api/v1/tasks/task-uuid-... \ -H "Authorization: Bearer YOUR_API_KEY"
const res = await fetch('https://kliio.app/api/v1/tasks/task-uuid-...', { method: 'DELETE', headers: { Authorization: 'Bearer YOUR_API_KEY' } }) const result = await res.json()
{ "success": true, "message": "Task deleted" }
{ "error": "Task not found or access denied" }
Permanently deletes a task and all associated time entries.
Bearer YOUR_API_KEY
true
"Task deleted"