FruxonDocs
Agent NetworkParticipants

Lists access requests in the tenant, filterable by agent / status / matched-or-approved participant.

The Agent Network overview tab calls this with `agentId` set to the current agent and `status=pending` to render the pending queue. The tenant-level triage page calls it without filters. Returns every match — paging is intentionally not modelled in v1 because the pending queue is bounded by operator throughput, not message volume.

GET
/v1/tenants/{tenant}/participantAccessRequests
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

AgentId?string

Narrow to requests against a single agent. Used by the agent-overview tab.

Status?string

Filter by lifecycle status (Pending / Approved / Rejected). Omit for all.

Value in"UNSPECIFIED" | "PENDING" | "APPROVED" | "REJECTED"
ParticipantId?string

Narrow to requests touching a specific participant — matches either matchedParticipantId (pending) or approvedParticipantId (committed). Useful for audit.

Formatuuid

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/participantAccessRequests"
[
  {
    "id": "00000000-0000-0000-0000-000000000000",
    "integrationConfigId": "00000000-0000-0000-0000-000000000000",
    "provider": "string",
    "address": "string",
    "agentId": "string",
    "matchedParticipantId": "00000000-0000-0000-0000-000000000000",
    "displayName": "string",
    "conversationName": "string",
    "status": "PENDING",
    "processedBy": "string",
    "processedAt": 0,
    "processingNote": "string",
    "approvedParticipantId": "00000000-0000-0000-0000-000000000000",
    "createdAt": 0,
    "modifiedAt": 0
  }
]
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}