Currently, the API supports transcripts only in English (
en) and is available only in the US deployment.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
en) and is available only in the US deployment.| Field | Value |
|---|---|
| Method | POST |
| Endpoint | https://{{host}}/api/public/streams/{{streamId}}/conversationSummary |
| Content Type | application/json |
| Authorization | auth: {{JWT}} See How to generate the JWT Token. |
| API Scope | App Builder: Conversation Summary |
| Parameter | Required | Description |
|---|---|---|
host | Required | Environment URL, for example, https://platform.kore.ai. |
streamId | Required | Stream ID or Bot ID. Access it from the General Settings page of the bot. |
curl -X POST 'https://{{host}}/api/public/streams/{{streamId}}/conversationSummary' \
--header 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \
--header 'Content-Type: application/json' \
--data '{
"lang": "en",
"inputMode": {
"conversationId": "64808537ba90cb4b3841xxxx"
}
}'
curl -X POST 'https://{{host}}/api/public/streams/{{streamId}}/conversationSummary' \
--header 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \
--header 'Content-Type: application/json' \
--data '{
"lang": "en",
"inputMode": {
"transcript": "Agent: Thank you for calling. How can I help you? Consumer: I have an issue with my DVR box..."
}
}'
| Parameter | Required | Description |
|---|---|---|
language | Required | The language for understanding the transcript and generating the summary. Currently only en (English) is supported. |
inputMode | Required | One of: conversationId (a valid conversation session ID) or transcript (the conversation transcript). |
{
"ConversationSummary": "Consumer was having a DVD issue. He has two boxes. The TV part is fine. The list doesn't work at all on the secondary box.",
"time": "2023-06-09T07:45:47.940Z"
}
| Parameter | Description |
|---|---|
ConversationSummary | The auto-generated summary of the conversation. |
time | Date and time of the summary generation. |
Was this page helpful?