Lists messages in a connector conversation.
Returns a paginated list of messages from a specific conversation, including both user messages and agent responses.
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 connector provider (e.g., slack, teams).
The conversation identifier.
The tenant identifier
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/connectorProviders/string/conversations/string/messages"{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"connectorId": "00000000-0000-0000-0000-000000000000",
"agentId": "string",
"connectorProvider": "string",
"conversationId": "string",
"conversationName": "string",
"from": "string",
"message": "string",
"attachments": [],
"tenantId": "00000000-0000-0000-0000-000000000000",
"createdAt": 0,
"executionRecordId": "00000000-0000-0000-0000-000000000000"
}
],
"nextPageToken": "string",
"totalCount": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Lists conversations for a connector.
Returns a paginated list of conversations from an external connector (e.g., Slack channels, Teams chats) that the agent has participated in.
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.