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

Request

curl -X PUT "https://app.orova.ai/api/agents/AGENT_ID" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Updated Agent Name",
    "system_prompt": "Updated instructions...",
    "llm_model": "gpt-4o"
  }'

Path parameters

ParameterTypeDescription
idstringAgent ID

Body parameters

All fields from Create Agent are accepted. Only include the fields you want to update.

Response

Returns the updated agent object.