GET
/
api
/
v1
/
session_debug
/
sid
/
{channel_manager_service}
/
{channel_manager_sid}
import os
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.session_debug.get_session_data_by_sid(channel_manager_service="<value>", channel_manager_sid="<id>")

    # Handle response
    print(res)
{
  "session_id": "123",
  "source": "+1234567890",
  "target": "+1239876543",
  "is_test": false,
  "messages": [
    {
      "role": "agent",
      "dialog": {
        "text": "Tell me about Syllable.ai!"
      },
      "tool_calls": [
        {
          "tool_call_id": "call_arbitrary_id",
          "tool_name": "general_information_web",
          "tool_arguments": "<any>",
          "timestamp": "2024-06-19T00:00:00"
        }
      ],
      "timestamp": "2024-06-19T00:00:00"
    }
  ]
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

channel_manager_service
string
required
channel_manager_sid
string
required

Response

200
application/json
Successful Response
session_id
integer
required

Session ID

Example:

"123"

source
string
required

Session source

Example:

"+1234567890"

target
string
required

Session target

Example:

"+1239876543"

is_test
boolean
required

Is test session

Example:

false

messages
object[]
required

Session messages