FruxonDocs
Agent NetworkParticipants

Lists participants in the tenant

Returns every participant in the tenant, 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. The result is unpaged.

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.

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/participants"
[
  {
    "id": "00000000-0000-0000-0000-000000000000",
    "kind": "PERSON",
    "displayName": "string",
    "email": "string",
    "relatedAgentId": "string",
    "channels": [
      {
        "integrationConfigId": null,
        "address": "string",
        "priority": 0,
        "label": "string",
        "disabled": false
      }
    ],
    "agentIds": [
      "string"
    ],
    "disabledAt": 0,
    "health": {
      "reachable": false,
      "channels": [],
      "reason": "INVALID_FORMAT"
    },
    "channelActivations": [
      {
        "agentId": "string",
        "bindingId": "00000000-0000-0000-0000-000000000000",
        "integrationConfigId": "00000000-0000-0000-0000-000000000000",
        "provider": "string",
        "address": "string",
        "webhookUrl": "string",
        "webhookUrlTemplate": "string",
        "webhookKeyPrefix": "string",
        "scope": "UNSPECIFIED"
      }
    ],
    "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
  }
]
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}