FruxonDocs
AgentsExecution Records

Lists the agent's revised runs, newest first.

The drill-down behind `judgeActivity.revised`, over the same origin, window and environment. Each row carries the participant and the channel address (or, when the session recorded none, the topic) so the client can open the conversation at the accepted reply, whose messages carry this `executionId` as `executionRecordId`. The rejected drafts are in the run's trace.

GET
/v1/tenants/{tenant}/agents/{agent}/judgeRevisions
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

The maximum number of items to return per page

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.

origin?string

Execution origin to list. Defaults to PRODUCTION.

Default"PRODUCTION"
Value in"UNSPECIFIED" | "PRODUCTION" | "TEST"
from?integer

Optional window start as Unix milliseconds (inclusive).

Formatint64
to?integer

Optional window end as Unix milliseconds (exclusive). Defaults to now when a window is requested.

Formatint64
environment?string

Optional environment slug to scope the list to.

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/agents/string/judgeRevisions"
{
  "items": [
    {
      "executionId": "00000000-0000-0000-0000-000000000000",
      "createdAt": 0,
      "score": 0,
      "rejectedDrafts": 0,
      "participantId": "00000000-0000-0000-0000-000000000000",
      "participantDisplayName": "string",
      "topicId": "00000000-0000-0000-0000-000000000000",
      "channelAddress": "string",
      "subject": "string"
    }
  ],
  "nextPageToken": "string",
  "totalCount": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}