FruxonDocs
AgentsApprovals

Lists unhandled-escalation events across the tenant, newest first.

Defaults to the last Fruxon.Model.HumanTasks.UnhandledEscalationReadService.DefaultLookback (these events are terminal and never drain, so an unbounded all-time list would stop being an attention signal); pass `sinceMs` to widen or narrow the window. Each item carries its `agentId`, `topicId`/`participantId` (for deep-linking into the conversation), and the failure reason. Read-only — the runtime already degraded the escalation gracefully.

GET
/v1/tenants/{tenant}/unhandledEscalations
AuthorizationBearer <token>

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

In: header

Path Parameters

tenant*string

The tenant identifier

Query Parameters

sinceMs?integer

Optional lower bound (Unix ms) on the event time. Defaults to now minus the lookback window.

Formatint64
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.

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/unhandledEscalations"
{
  "items": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "agentId": "string",
      "networkId": "00000000-0000-0000-0000-000000000000",
      "sessionId": "string",
      "topicId": "00000000-0000-0000-0000-000000000000",
      "participantId": "00000000-0000-0000-0000-000000000000",
      "detail": "string",
      "createdAt": 0
    }
  ],
  "nextPageToken": "string",
  "totalCount": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}