Lists the Applications (Networks) this participant belongs to, with role badges and per-customer policy.
The inverse of the per-Application `People & groups` list: for one participant it returns every Application they hold a live relationship in, each with the same composable role badges the Application's People projection shows (Customer / Internal / Operator / Advisor / Observer / Channel), the served relationship key, the §17.8 response mode (agent mode), and any per-customer dedicated-operator escalation override. Drives the Directory participant detail's Applications tab. Grants are managed on the Application surface — this endpoint is read-only. Returns 404 when the participant does not exist; an empty list when they exist but are in no Application.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The participant identifier.
uuidThe tenant identifier
Query Parameters
The maximum number of items to return per page
int32int32Opaque 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/participants/497f6eca-6276-4993-bfeb-53cbbbba6f08/applications"{
"items": [
{
"networkId": "00000000-0000-0000-0000-000000000000",
"networkName": "string",
"relationshipKey": "SERVED",
"agentMode": "ON",
"escalationOverride": {
"tiers": [],
"mode": "UNSPECIFIED",
"allOperatorParticipantIds": []
},
"badges": []
}
],
"nextPageToken": "string",
"totalCount": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Rejects an access request.
Records the rejection on the row. Future inbound from the same sender creates a fresh pending row — reject means "no for now," not "never." A `:block` verb (deferred) would be the never form. Requires Editor role on the request's agent.
Pulls the participant's avatar from a messaging-provider channel and stores it on the participant
Routes the call through the provider-specific `IParticipantAvatarSource` registered for the channel's integration id (Slack today; other providers as they're added), downloads the image into platform storage, and writes the resulting file id into `Participant.AvatarFileId`. Returns the updated participant. Surfaces 400 when the named channel isn't on the participant, when the provider has no avatar source registered, when the operator hasn't connected OAuth for that workspace, or when the provider returns no image for the address (channels/groups, default-avatar users).