Authorizations
Path Parameters
Response
Successful Response
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"
}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"
}Successful Response