chat_thread_id
. The response includes the chat title, agent involved, and a list of question-response pairs exchanged during the chat session.chat_thread_id
, follow this guide:chat_thread_id
as a path parameter.curl --location -g --request GET 'https:///v2/api/chat-log/admin-panel/0' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Chat logs retrieved successfully",
"data": {
"title": "Greeting",
"agent_name": "Policy Whisper",
"chat_logs": [
{
"id": 10235,
"question": "Hi can you tell me the favorite song of user?",
"response": "user's favorite song is \"Boom Boom Bubble Gum\" [0].",
"created_by": "user@example.com",
"created_on": "2025-01-08T11:24:28.621630Z"
}
]
}
}