Deletes a task permanently. If the task is still running, use task.stop first.
cURL
curl --request POST \ --url https://api.manus.ai/v2/task.delete \ --header 'Content-Type: application/json' \ --header 'x-manus-api-key: <api-key>' \ --data ' { "task_id": "<string>" } '
{ "ok": true, "request_id": "<string>", "id": "<string>", "deleted": true }
The unique identifier of the task to delete. Agent-related tasks cannot be deleted.
Task deleted successfully.
Whether the request was successful.
true
Unique identifier for this API request.
The ID of the deleted task.
Always true when the deletion was successful.
Was this page helpful?