FruxonDocs
Agent NetworkGraph

Lists a page of the Network's served-participant grants.

Returns a page of access grants in the Network (served, observer, and advisor; active and revoked), in participant order. Paged at the DB with no total-count query — items + next-page cursor only.

GET
/v1/tenants/{tenant}/networks/{network}/participants
AuthorizationBearer <token>

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

In: header

Path Parameters

network*string

The owning Network id.

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

includeTotalCount?boolean

Opt in to the one extra COUNT that fills totalCount (default off).

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/networks/497f6eca-6276-4993-bfeb-53cbbbba6f08/participants"
{
  "items": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "networkId": "00000000-0000-0000-0000-000000000000",
      "participantId": "00000000-0000-0000-0000-000000000000",
      "relationshipKey": "SERVED",
      "status": "ACTIVE",
      "source": "MANUAL",
      "agentMode": "ON",
      "escalationOverride": {
        "tiers": [],
        "mode": "UNSPECIFIED",
        "allOperatorParticipantIds": []
      },
      "createdAt": 0,
      "modifiedAt": 0
    }
  ],
  "nextPageToken": "string",
  "totalCount": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}