Updates an agent’s nickname and description. Use agent.detail to view current values before updating.
cURL
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>" } }
The unique identifier of the agent to update.
New display name for the agent.
New description or bio for the agent.
Agent updated successfully.
Whether the request was successful.
true
Unique identifier for this API request.
The updated agent object.
Hide child attributes
Unique identifier for the agent. Use this as agent_id in task.list (with scope=agent_subtask) to view this agent's subtasks.
agent_id
scope=agent_subtask
The task ID associated with this agent's creation or configuration. Use task.detail to view the associated task.
Display name of the agent. Can be updated via agent.update.
Description or bio of the agent explaining its purpose and specialization. Can be updated via agent.update.
Was this page helpful?