session_debug
Get Session Data By Session Id
agents
agents.test
conversations
data_sources
events
incidents
insights
insights.workflows
insights.tools
custom_messages
prompts
session_labels
sessions.transcript
sessions.full-summary
session_debug
channels.targets
directory
dashboards
outbound.batches
- GETList Outbound Communication Batches
- POSTCreate Outbound Communication Batch
- GETGet Outbound Communication Batch
- PUTUpdate Outbound Communication Batch
- DELDelete Outbound Communication Batch
- POSTUpload Outbound Communication Batch
- GETFetch Outbound Communication Batch Results
- POSTCreate Outbound Communication Request
- POSTDelete Requests By List Of Reference Ids
outbound.campaigns
language_groups
takeouts
session_debug
Get Session Data By Session Id
GET
/
api
/
v1
/
session_debug
/
session_id
/
{session_id}
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_session_id(session_id=744354)
# 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
Path Parameters
Response
200
application/json
Successful Response
Session ID
Example:
"123"
Session source
Example:
"+1234567890"
Session target
Example:
"+1239876543"
Is test session
Example:
false
Session messages
Dialog role
Available options:
agent
, user
Dialog message
Dialog message text
Example:
"Tell me about Syllable.ai!"
Tool calls
Tool call ID
Example:
"call_arbitrary_id"
Tool name
Example:
"general_information_web"
Tool arguments
Tool call timestamp
Example:
"2024-06-19T00:00:00"
Message timestamp
Example:
"2024-06-19T00:00:00"
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_session_id(session_id=744354)
# 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"
}
]
}