Agents
Delete an agent version
Delete a saved version.
DELETE/agents//versions/
Bearersession
Path parameters
agent_idrequiredversion_numberrequiredcurl -X DELETE 'https://backend.omnidim.io/api/v1/agents/{agent_id}/versions/{version_number}' \ -H 'Authorization: Bearer YOUR_API_KEY'
Example response
{ "success": true, "message": "Version deleted successfully" }
Authorization
BearerAuth AuthorizationBearer <token>
Bearer token authentication. Obtain your API key from the OmniDimension dashboard.
In: header
Path Parameters
agent_id*integer
The ID of the agent.
version_number*integer
The version number, as returned in version_number from the list or save endpoints.
Response Body
application/json
application/json
application/json
Rename an agent version
Rename a saved version or edit its note. Version history is immutable otherwise; only the name and note can change.
Diff an agent version
Get a record-level diff for this version. By default it shows what changed in this version compared with the version before it. Use `against=current` to compare with the agent's live config (what restoring this version would change), or `against=<number>` to compare with another version.
