MeetStream Guide: Configure Post‑Call Transcription
This guide explains how to enable post‑call transcription for your MeetStream bot, choose a provider, and fetch the transcript after the call ends.
Supported providers:
assemblyaideepgramjigsawstackmeeting_captions(native captions from Google Meet / Microsoft Teams)
1) Enable transcription in recording_config while creating a bot
When calling Create Bot / Create Agent, include a recording_config object with a transcript section.
At minimum, you’ll provide:
You can use exactly one provider under
transcript.provider.
2) Provider payload examples
A) JigsawStack (jigsawstack)
B) Deepgram (deepgram)
C) AssemblyAI (assemblyai)
D) Meeting captions (native Google Meet / Teams captions)
If you want the platform’s native captions (Google Meet / Microsoft Teams), use:
For
meeting_captions, you do not usetranscript_idto fetch captions.
Instead, you’ll fetch the bot details and download the caption file from the returned S3 link (see below).
3) Getting transcript_id after creating the bot
When you create a bot with one of these providers:
assemblyaideepgramjigsawstack
…the Create Bot response will include a transcript_id.
Store that transcript_id — you’ll use it to retrieve the transcript after the call ends.
4) Fetch the post‑call transcript using transcript_id
A) Standard transcript (formatted)
B) Raw transcript
Replace {{transcript_id}} with the value you received in Create Bot response.
5) Fetch native captions (meeting_captions provider)
For captions from Google Meet / Teams, you’ll retrieve the caption file using bot details.
Bot detail endpoint
In this response, you will receive an S3 download link for the caption file (if captions are available).
Captions availability depends on the meeting platform and whether captions were enabled during the meeting.
6) Recommended workflow (best practice)
- Create bot with
recording_config.transcript.providerset. - Receive bot lifecycle webhooks (
bot.joining,bot.inmeeting,bot.stopped). - When you receive
bot.stopped:- For
assemblyai/deepgram/jigsawstack: fetch transcript usingtranscript_id. - For
meeting_captions: call/api/v1/bots/{{bot_id}}/detailand download captions via the S3 link.
- For
Troubleshooting tips
- If transcript is not ready immediately after
bot.stopped, retry after a short delay. - Make sure your provider configuration values (like model/language) are valid for that provider.
- If using
meeting_captions, confirm captions were enabled and supported for the platform.
If you want, I can also generate:
- a single full Create Bot payload per provider, and/or
- ready-to-copy examples for Node.js / Python to fetch transcripts and handle retries.
