GET
/
api
/
v1
/
sessions
/
full-summary
/
{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.sessions.full_summary.get_by_id(session_id="<id>")

    # Handle response
    print(res)
{
  "summary": "The customer service agent successfully assisted the caller with their inquiry and the call ended positively.",
  "rating": "Good"
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

session_id
string
required

Response

200
application/json
Successful Response

AI summary information for a given session.

summary
string | null

The AI summary of the session

Example:

"The customer service agent successfully assisted the caller with their inquiry and the call ended positively."

rating
string | null

The AI rating of the session

Example:

"Good"