Skip to main content
PATCH
/
agents
/
{agent_id}
Update Agent
curl --request PATCH \
  --url https://api.example.com/agents/{agent_id}

Path Parameters

ParameterTypeDescription
agent_idstringThe agent’s unique identifier

Request Body

Only include fields you want to change:
{
  "description": "Updated description",
  "llm_config": {
    "temperature": 0.5
  },
  "enable_planning": false
}

Response

Returns the full updated agent configuration.