Recordings
Access audio recordings from VoiceRun sessions.
View in app: Open a session to play the recording.
Note: Recording must be enabled in the agent environment's startup settings (recordingEnabled: true).
See Authentication for API key setup.
Get Recording#
Retrieve the audio recording for a specific session.
GET /v1/sessions/{sessionId}/recording
Query Parameters#
| Parameter | Type | Description |
|---|---|---|
format | string | Audio format: wav or mp3 (default: wav) |
Response#
Returns a binary audio stream as a file download:
| Format | Content-Type | Content-Disposition |
|---|---|---|
wav | audio/wav | attachment; filename="{sessionId}.wav" |
mp3 | audio/mpeg | attachment; filename="{sessionId}.mp3" |
