Skip to main content
POST
/
rooms
/
{room_name}
/
transcription
/
update
rooms/:name/transcription/update
curl --request POST \
  --url https://api.daily.co/v1/rooms/{room_name}/transcription/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "instanceId": "<string>",
  "participants": [
    "<string>"
  ]
}
'
{
  "sent": "true"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

room_name
string
required

Body

application/json
instanceId
string

instanceId to be updated.

participants
string[]

A list of participant IDs to be transcribed. Only the participant IDs included in this array will be processed

Response

200