Call streaming
Start call streaming
Starts streaming the media of the call identified by call_id to the configured destination. Returns the stream_id.
post/v1/calls/{call_id}/streams
Path parameters
call_idstring uuid required
The uuid of the call.
Request body
Example request
{
"stream_url": "wss://examples.com/stream"
}Response
Returns the created media stream, including its stream_id.
Example response
{
"success": true,
"stream_id": "123e4567-e89b-12d3-a456-426614174000"
}