Get AI agent logs of a specific conversation

This API endpoint retrieves AI agent logs of a specific conversation.

Endpoint

GET /ai-framework-management/api/v1/conversations/{conversationId}

HTTP Method

GET

Path Parameters

Path Parameter

Type

Description

conversationId

UUID

UUID of the conversation.

Query Parameters

None

Request Headers

Authorization: Bearer {token}

Request Example
GET /ai-framework-management/api/v1/conversations/5695b6ba-360f-4daf-8b42-47eb59c01767 HTTP/1.1

Host: livehub.audiocodes.io
Authorization: Bearer av4356prc98mqt512jki
Response Body

The response contains AI agent logs of a specific conversation.

Response Example
{
  "start_time": "2025-10-23T14:51:46.653000",
  "end_time": "2025-10-23T14:53:49.853000",
  "account_id": "43ac12a9-12aa-404c-9891-052faf29df4e",
  "agent": "weather-agent",
  "history": [
    {
      "time": "2025-09-14T16:56:40.770000",
      "task_name": "weather-agent",
      "message": "Start conversation SYSTEM PROMPT: ==...",
      "label": "[weather-agent] system",
      "type": "log"
    },
    ...
  ],
  "id": "5695b6ba-360f-4daf-8b42-47eb59c01767"
}