curl -X DELETE http://localhost:3000/tasks/1 \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
{
"message": "Task deleted successfully",
"id": 1
}
Delete an existing task
curl -X DELETE http://localhost:3000/tasks/1 \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
{
"message": "Task deleted successfully",
"id": 1
}
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Celaya55/app-cr/llms.txt
Use this file to discover all available pages before exploring further.
Authorization: Bearer YOUR_JWT_TOKEN
curl -X DELETE http://localhost:3000/tasks/1 \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
{
"message": "Task deleted successfully",
"id": 1
}