Lists known chat destinations for a specific connector instance.
Returns chats/channels/conversations that this connector has previously interacted with. Useful for populating destination dropdowns when configuring scheduled job outbound routes.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The unique identifier of the agent.
The unique identifier of the connector instance.
uuidThe tenant identifier
The connector provider type (e.g., telegram, whatsapp)
Query Parameters
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/agents/string/connectors/string/497f6eca-6276-4993-bfeb-53cbbbba6f08/knownChats"{
"items": [
{
"destinationId": "string",
"name": "string",
"messagesCount": 0,
"lastMessageCreatedAt": 0,
"senders": []
}
],
"nextPageToken": "string",
"totalCount": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Lists messages in a connector conversation.
Returns a paginated list of messages from a specific conversation, including both user messages and agent responses.
Lists all assets for the tenant, including token budget from the RAG service.
Returns the tenant's assets joined with RAG-side metadata (token budget, embedding model, usage) fetched in a single batch per page. Use this to render the assets index; for a single asset prefer the `GET /assets/{asset}` endpoint which avoids the batch join. Newly created assets appear immediately, but their ingestion may still be in progress — check `/operations` for status.