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/sessions/
Updates properties of an existing session. Only the fields provided in the request body will be updated.Path Parameters
The ID of the session to update. Must be a valid session ID with the
session_ prefix.Request Body
All fields are optional. Only include the fields you want to update.Updated title for the session.
Updated tags for the session. Replaces existing tags entirely.
Updated model override for this session. Set to override the agent’s default model.
Updated session-level capabilities. Replaces existing session capabilities entirely.Session capabilities are additive to the agent’s capabilities:
- Agent capabilities are applied first
- Session capabilities are applied after (additive)
ref(string, required): Capability reference ID (e.g., “current_time”, “web_fetch”)config(object, optional): Configuration overrides for the capability
Response
Returns the updatedSession object.
The session’s public ID with the
session_ prefix.The ID of the agent assigned to this session (cannot be changed).
The updated session title.
Updated tags associated with the session.
Updated model override for this session.
Updated session-level capabilities.
Current session status:
started, active, or idle.Computed at read time by aggregating features from all active capabilities.
ISO 8601 timestamp when the session was created.
ISO 8601 timestamp when the session was last updated.
Examples
Update title
Update capabilities
Update multiple fields
Error Responses
404 Not Found- Session does not exist or is not accessible400 Bad Request- Invalid request body or parameters401 Unauthorized- Missing or invalid authentication
Notes
- This endpoint uses PATCH semantics: only provided fields are updated
- The
agent_idcannot be changed after session creation - Updating
capabilitiesreplaces the entire session capabilities array - Updating
tagsreplaces the entire tags array - Session capabilities are always additive to agent capabilities