Skip to main content
POST
/
api
/
v1
/
sessions
/
recording
/
{session_id}
Typescript (SDK)
import { SyllableSDK } from "syllable-sdk";

const syllableSDK = new SyllableSDK({
  apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});

async function run() {
  const result = await syllableSDK.sessions.generateSessionRecordingUrls({
    sessionId: "<id>",
  });

  console.log(result);
}

run();
{
  "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

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"
]