FruxonDocs
Agent NetworkParticipants

Lists participants in the tenant

Returns participants ordered by display name, each with its inline channels and current agent bindings. Pass `agentId` to narrow the result to the participants bound to a single agent — the Agent Network UI uses this to render an agent's contact list. Always paged (an agent's roster can run to thousands): each response carries `nextPageToken` and `totalCount`, and an omitted `pageSize` takes the server default rather than returning everything. Consumers that need the whole roster page through `nextPageToken`.

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

If supplied, only participants bound to this agent are returned.

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.

orderBy?

Sort order (AIP-132 orderBy); defaults to display name ascending — powers the Directory table's sortable column headers.

search?string

Optional case-insensitive substring filter (search query parameter) matched against the participant display name — powers the Executions participant filter's typeahead. Omit for the unfiltered roster.

kind?string

Optional participant-kind filter (PERSON / GROUP / AI_AGENT) — powers the Directory's per-kind tabs. Omit for all kinds.

Value in"UNSPECIFIED" | "PERSON" | "GROUP" | "AI_AGENT"
environmentId?string

Optional environment filter (environmentId query parameter) — narrows the roster to contacts in one workspace environment, pushed to the (TenantId, EnvironmentId) index. Omit for all environments.

Formatuuid

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/participants"
{
  "items": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "kind": "PERSON",
      "tier": "CURATED",
      "audience": "UNKNOWN",
      "displayName": "string",
      "email": "string",
      "relatedAgentId": "string",
      "description": "string",
      "expertise": [
        "string"
      ],
      "area": "string",
      "bio": "string",
      "preferredLanguage": "string",
      "environmentId": "00000000-0000-0000-0000-000000000000",
      "preferences": [
        "string"
      ],
      "accounts": [],
      "addresses": [],
      "isDebugOnly": false,
      "agentIds": [
        "string"
      ],
      "disabledAt": 0,
      "health": {
        "reachable": false,
        "channels": [],
        "reason": null
      },
      "channelActivations": [],
      "avatarFileId": "string",
      "avatarSource": "UPLOADED",
      "avatarSourceConfigId": "00000000-0000-0000-0000-000000000000",
      "avatarSourceAddress": "string",
      "avatarSyncedAt": 0,
      "avatarAutoSync": {
        "synced": false,
        "provider": "string",
        "address": "string"
      },
      "createdAt": 0,
      "modifiedAt": 0
    }
  ],
  "nextPageToken": "string",
  "totalCount": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}