Agents
Update an agent
patch/api/v1/managed_agents/agents/{id}
Path parameters
idstring required
Request body
Example request
{
"name": "my-agent",
"runtime": "cursor",
"model": "claude-opus-4-5",
"system_prompt": "You are a helpful assistant.",
"tools": [
"bash",
"file_read",
"file_write"
]
}Response
Updated agent
Example response
{
"name": "my-agent",
"runtime": "cursor",
"model": "claude-opus-4-5",
"tools": [
"bash",
"file_read"
]
}