Skip to main content
Update an existing agent configuration. You can modify any part of the agent’s settings within the system_config object.
id
string
required
The agent ID

Request Body

system_config
object
required
Updated agent configuration fields
curl -X PATCH https://api-be.atthene.com/api/v1/agent/550e8400-e29b-41d4-a716-446655440000/ \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "system_config": {
      "system_prompt": "Updated system prompt...",
      "llm_config": {
        "temperature": 0.8
      }
    }
  }'

Response

Returns the updated agent configuration with new config_hash and updated_at timestamp.