POST
/
api
/
v1
/
sessions
/
recording
/
{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.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"
  ]
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

session_id
string
required

Response

200
application/json
Successful Response

Recording URLs for a given session.

session_id
string | null

The internal ID of the session

Example:

1

recordings
string[] | null

List of recording URLs

Example:
[
  "https://example.com/recording1.mp3",
  "https://example.com/recording2.mp3"
]