Skip to main content
DELETE
/
v1
/
tasks
/
{task_id}
DeleteTask
curl --request DELETE \
  --url https://api.manus.ai/v1/tasks/{task_id} \
  --header 'API_KEY: <api-key>'
{
  "id": "<string>",
  "object": "<string>",
  "deleted": true
}
Permanently delete a task by its ID. This action cannot be undone.

Authorizations

API_KEY
string
header
required

Path Parameters

task_id
string
required

The ID of the task to delete

Response

200 - application/json

Task deleted successfully.

id
string

The ID of the deleted task

object
string

Always "task.deleted"

deleted
boolean

Always true if successful

I