v66

OpenAPI 3.1.0raw.githubusercontent.com2026-08-04176310979.2 KB
session_debug

Get Session Data By Sid

get/api/v1/session_debug/sid/{channel_manager_service}/{channel_manager_sid}

Path parameters

channel_manager_servicestring required
channel_manager_sidstring required

Response

Successful Response

session_idinteger required

Session ID

sourcestring required

Session source

targetstring required

Session target

is_testboolean required

Is test session

Example response

{
  "source": "+1234567890",
  "target": "+1239876543",
  "messages": [
    {
      "dialog": {
        "text": "Tell me about Syllable.ai!"
      },
      "tool_calls": [
        {
          "tool_call_id": "call_arbitrary_id",
          "tool_name": "general_information_web",
          "tool_arguments": {
            "question": "Tell me about Syllable.ai!"
          },
          "tool_result": {
            "answer": "Syllable is a platform for building and managing AI voice agents..."
          },
          "timestamp": "2024-06-19T00:00:00"
        }
      ],
      "timestamp": "2024-06-19T00:00:00"
    }
  ]
}