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.generate_session_recording_urls(session_id="<id>")
# Handle response
print(res)
{
"session_id": 1,
"recordings": [
"https://example.com/recording1.mp3",
"https://example.com/recording2.mp3"
]
}
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.generate_session_recording_urls(session_id="<id>")
# Handle response
print(res)
{
"session_id": 1,
"recordings": [
"https://example.com/recording1.mp3",
"https://example.com/recording2.mp3"
]
}
Successful Response
Recording URLs for a given session.