Stop

To stop a transcription for a room which has a live session being transcribed, you need to execute a POST request against the /rooms/:id/transcription/stop endpoint.

Transcription can also be stopped manually by a moderator inside the live session. Here we describe how to stop the transcription through the REST API, so you can control start / stop transcription externally as an integrator.

Request

curl --request POST \
  --url https://api.digitalsamba.com/api/v1/rooms/c39d7c40-7ff7-4faa-b06f-698a639a9523/transcription/stop \
  --user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY

Response (200 OK) -> No Content

If no session is active for the room you will receive a generic 400 Bad Request response.

{
    "message": "Can not stop transcription, this room is not active."
}

Last updated