FruxonDocs
AgentsHistory

Gets the change history for an agent.

Returns a chronological list of all changes made to the agent, including configuration updates, deployments, and metadata changes.

GET
/v1/tenants/{tenant}/agents/{agent}/history
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

agent*string

The unique identifier of the agent.

tenant*string

The tenant identifier

Query Parameters

PageSize?integer
Formatint32
PageToken.Skip?integer
Formatint32
PageToken.Cursor?string

Opaque cursor token from an external system (e.g. RAG API). When set, M:Fruxon.Common.Collections.PageToken.AsString returns this value directly instead of encoding Fruxon.Common.Collections.PageToken.Skip.

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/agents/string/history"
{
  "items": [
    {
      "agentId": "string",
      "agentRevision": 0,
      "comment": "string",
      "createdAt": 0,
      "createdBy": "string",
      "actor": "string"
    }
  ],
  "nextPageToken": "string",
  "totalCount": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}