Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
TypeScript
import { SyllableSDK } from "syllable-sdk"; const syllableSDK = new SyllableSDK({ apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "", }); async function run() { const result = await syllableSDK.sessionDebug.getSessionDataBySid({ channelManagerService: "<value>", channelManagerSid: "<id>", }); console.log(result); } run();
{ "session_id": 123, "source": "<string>", "target": "<string>", "is_test": true, "messages": [ { "dialog": { "text": "<string>" }, "tool_calls": [ { "tool_call_id": "<string>", "tool_name": "<string>", "tool_arguments": "<unknown>", "tool_result": { "answer": "Syllable is a platform for building and managing AI voice agents..." }, "timestamp": "2023-11-07T05:31:56Z" } ], "timestamp": "2023-11-07T05:31:56Z" } ] }
Successful Response
Session ID
"123"
Session source
"+1234567890"
Session target
"+1239876543"
Is test session
false
Session messages
Show child attributes