Start

To start transcription for a room which has a live session, you need to execute a POST request against the /rooms/:id/transcription/start endpoint. Transcripts are saved and can later be exported through the API or dashboard.

Request

curl --request POST \
  --url https://api.digitalsamba.com/api/v1/rooms/c39d7c40-7ff7-4faa-b06f-698a639a9523/transcription/start \
  --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 start transcription, this room is not active."
}

Last updated