Add Bot to Meeting
info
This endpoint enables you to add an AI-powered bot to your meetings for automated transcription, note-taking, and task extraction.
API Endpoint
[POST] /v1/integrations/bot/meeting
Platform Support
Currently supported meeting platforms:
- Google Meet
- Microsoft Teams
- Zoom
Request
Request Body
{
"email": "{Bot Owner's Platform Mail}",
"meeting_name": "Test Toplantısı",
"meeting_url": "https://meet.google.com/1111111",
"language": "tr",
"meeting_date_time": "2024-10-29T19:58:00Z",
"is_not_save_video": false
}
Request Fields
| Field | Type | Required | Validation | Description |
|---|---|---|---|---|
email | string | Yes | Valid email format | Bot owner's platform email address |
meeting_name | string | Yes | 1-100 characters | Name of the meeting |
meeting_url | string | Yes | Valid meeting URL | URL of the meeting to add the bot to |
language | string | Yes | Valid language code | Language code for the bot |
meeting_date_time | string | No | ISO 8601 format | Meeting date and time |
is_not_save_video | boolean | No | true or false | If true, the video will not be saved |
Supported Languages
| Region | Language Codes |
|---|---|
| European | bg (Bulgarian), ca (Catalan), cs (Czech), da-DK (Danish), nl (Dutch), et (Estonian), fi (Finnish), nl-BE (Flemish), fr (French), de (German), de-CH (Swiss German), el (Greek), hu (Hungarian), it (Italian), lv (Latvian), lt (Lithuanian), no (Norwegian), pl (Polish), pt (Portuguese), ro (Romanian), ru (Russian), sk (Slovak), es (Spanish), sv-SE (Swedish), uk (Ukrainian) |
| Asian | zh-CN (Chinese Simplified), hi (Hindi), hi-Latn (Hindi Latin), id (Indonesian), ja (Japanese), ko (Korean), ko-KR (Korean South), ms (Malay), th-TH (Thai), vi (Vietnamese) |
| American | en-US (English US), pt-BR (Portuguese Brazil) |
Response
Success Response (200)
{
"meeting_id": "NbyJiPxSR5Vp5ZW8GxRa"
}
note
A successful bot addition returns a 200 status code with no content in the response body.