Description/Error
/meetings/{meetingId}/recordings API does not give any information as to the status of a transcript and if it is still processing/completed/failed.
Which Endpoint/s?
/meetings/{meetingId}/recordings
How To Reproduce (If applicable)
Steps to reproduce the behavior:
- Request recording details with this api /meetings/{meetingId}/recordings
- The response does not say if the transcript failed or is in process
Additional context
Currently the only way to know if transcription fails is if you look at a recording through the web UI. This cannot be done through the API. You only know that it is successful if the transcript file shows up in the recording_files
array in the API response. If the transcript file is not there then you are left to wonder if the transcript is still processing or if it failed.
Yes there is the webhook for the transcription to complete but if you never receive it you don’t know if it failed, if you missed it, or something else happens.
It would be great for the recording api to return a property such as “transcription_status”: “done/failed/in progress” along with the rest of the info