Skip to main content
PUT
/
v1
/
tasks
/
{task_id}
UpdateTask
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>"
}
Update a task’s metadata such as title, sharing settings, and visibility in the task list.

Updatable Fields

  • title: Change the task’s title
  • enableShared: Enable or disable public sharing of the task
  • enableVisibleInTaskList: Control whether the task appears in the Manus webapp task list

Authorizations

API_KEY
string
header
required

Path Parameters

task_id
string
required

Body

application/json
title
string
enableShared
boolean
enableVisibleInTaskList
boolean

Response

200 - application/json
task_id
string
task_title
string
task_url
string
share_url
string