Skip to main content
POST
/
realtime
/
v1
/
call
/
{id}
/
audio
/
stream
/
{streamId}
/
pause
Pause/Unpause Audio Stream
curl --request POST \
  --url https://realtime.govworx.net/realtime/v1/call/{id}/audio/stream/{streamId}/pause \
  --header 'Content-Type: application/json' \
  --data '{
  "paused": true
}'
{
  "streamId": "<string>",
  "paused": true,
  "positionSeconds": 123,
  "mode": "<string>",
  "bufferDurationSeconds": 123,
  "pauseExpiresAtEpochSecond": 123
}

Path Parameters

id
string
required
streamId
string
required

Body

application/json
paused
boolean

Response

Pause state applied successfully

streamId
string
paused
boolean
positionSeconds
number<double>
mode
string
bufferDurationSeconds
number<double>
pauseExpiresAtEpochSecond
integer<int64>