cURL
curl --request PUT \ --url https://api.example.com/api/agents/{id}
Update an existing agent
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" }'
id