Back to API List To fetch conversation details and summary between the bot and user, or the user and agent. Supports pagination viaDocumentation Index
Fetch the complete documentation index at: https://koreai.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
skip and limit parameters.
| Field | Value |
|---|---|
| Method | POST |
| Endpoint | https://{{host}}/api/public/bot/{{botId}}/conversationDetails |
| Content Type | application/json |
| Authorization | auth: {{JWT}} See How to generate the JWT Token. |
| API Scope | App Builder: Chat History |
Path Parameters
| Parameter | Required | Description |
|---|---|---|
host | Required | Environment URL, for example, https://platform.kore.ai. |
botId | Required | Bot ID or Stream ID. Access it from the General Settings page of the bot. |
Sample Request
Request Body Parameters
| Parameter | Required | Description |
|---|---|---|
skip/offset | Optional | The number of messages to skip. |
limit | Optional | The number of messages to show per page. |
sessionId/callId | Required | Unique session ID or call ID to fetch conversation details. The callId refers to the external call identifier provided by third-party agent desktops. |
conversationId | Required | Unique identifier for the conversation. Use either sessionId or conversationId; if both are provided, sessionId takes precedence. |
lang | Optional | The language in which the conversation summary should be returned. |
isSummaryRequired | Optional | Whether to include an auto-generated summary: true to include, false (default) to exclude. |
If the session ID is available, the call ID is not mandatory and vice versa. If both are present, the session ID is used.