Documentation Index
Fetch the complete documentation index at: https://mintlify.com/everruns/everruns/llms.txt
Use this file to discover all available pages before exploring further.
PATCH /v1/agents/
Update one or more fields of an existing agent. Only provided fields will be updated (partial update).Path Parameters
UUID of the agent to update
Request Body
All fields are optional. Only include fields you want to update.Update agent name. Maximum 2 KB.
Update base system prompt. Maximum 1 MB.
Update description. Maximum 10 KB.
Update default model UUID. Set to
null to remove model override.Replace capabilities list. Maximum 250 items.
Response
Returns the updated agent object with all fields.UUID of the agent (unchanged)
Updated agent name
Updated system prompt
Updated description
Updated default model UUID
Updated capabilities array
Agent status (unchanged by PATCH)
Original creation timestamp
New update timestamp
Example: Update Name and Description
Example: Add Capability
Example: Update Model
Example Response
Changes to agent configuration do not affect existing sessions. New sessions created after the update will use the new configuration. To apply changes to existing sessions, you would need to update the session’s capabilities separately.
Error Responses
400 Bad Request- Invalid input or size limits exceeded404 Not Found- Agent with specified ID does not exist422 Unprocessable Entity- Validation error (invalid capability reference)500 Internal Server Error- Server error