Skip to main content
POST
/
v2
/
agent.update
UpdateAgent
curl --request POST \
  --url https://api.manus.ai/v2/agent.update \
  --header 'Content-Type: application/json' \
  --header 'x-manus-api-key: <api-key>' \
  --data '
{
  "agent_id": "<string>"
}
'
{
  "ok": true,
  "request_id": "<string>",
  "agent": {
    "id": "<string>",
    "task_id": "<string>",
    "nickname": "<string>",
    "about": "<string>"
  }
}
Questions or issues? Contact us at api-support@manus.ai.

Authorizations

x-manus-api-key
string
header
required

Body

application/json
agent_id
string
required

The unique identifier of the agent to update.

nickname
string

New display name for the agent.

about
string

New description or bio for the agent.

Response

Agent updated successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

agent
object

The updated agent object.