All-in-one API for Meeting Bots

Integrate your app or AI Agent with Zoom, Teams, and Google Meet to capture near real-time transcripts and meeting recordings

Microsoft Teams Integration Now Available

June 21, 20251 min read

We're excited to announce that ChatterBox now supports Microsoft Teams meetings. You can now deploy bots to Teams meetings using our unified API.

How to Use Teams Integration

The API remains unified across all platforms. To join a Teams meeting, simply set the platform parameter to 'teams' when calling the bot join function:

from chatterbox_io import ChatterBox

client = ChatterBox(authorization_token="your_api_token")

# Join a Teams meeting
session = await client.send_bot(
    platform="teams",
    meeting_id="your_teams_meeting_id",
    meeting_password="your_teams_meeting_passcode",
    bot_name="My Bot"
)

Teams Meeting ID Format

Teams meeting IDs typically follow the format: #############. You can find this in your Teams meeting link or meeting details.

What's Available

Teams integration provides the same features as our other platforms:

  • Real-time meeting transcription
  • WebSocket events for live updates
  • Post-call audio, video recordings and transcripts
  • Webhook support

The integration is now live and ready to use. No additional setup required - just update your platform parameter to "teams" and you're ready to go.