cURL
curl --request PUT \ --url https://api.manus.ai/v1/tasks/{task_id} \ --header 'API_KEY: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "title": "<string>", "enableShared": true, "enableVisibleInTaskList": true } '
{ "task_id": "<string>", "task_title": "<string>", "task_url": "<string>", "share_url": "<string>" }
Updates a task’s metadata.
The ID of the task to update
New title for the task
Whether to enable public sharing
Whether the task should be visible in the task list
Task updated successfully.
Public share URL if sharing is enabled
Was this page helpful?