joinMeeting
Join Zoom or Google Meet meetings via meeting ID and password, capture transcripts, and record audio for comprehensive meeting summaries.
Instructions
Join a Zoom or Google Meet meeting using the provided meeting ID and password and capture transcript and audio recording
Input Schema
Name | Required | Description | Default |
---|---|---|---|
botName | Yes | The name of the bot | |
meetingId | Yes | The ID of the Zoom ('###########') or Google Meet ('xxx-xxx-xxx') meeting | |
meetingPassword | No | The password for the Zoom meeting (optional) | |
platform | Yes | The online conference platform (zoom or googlemeet) | |
webhookUrl | No | URL to receive webhook events for meeting status (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"botName": {
"description": "The name of the bot",
"type": "string"
},
"meetingId": {
"description": "The ID of the Zoom ('###########') or Google Meet ('xxx-xxx-xxx') meeting",
"type": "string"
},
"meetingPassword": {
"description": "The password for the Zoom meeting (optional)",
"type": "string"
},
"platform": {
"description": "The online conference platform (zoom or googlemeet)",
"enum": [
"zoom",
"googlemeet"
],
"type": "string"
},
"webhookUrl": {
"description": "URL to receive webhook events for meeting status (optional)",
"type": "string"
}
},
"required": [
"platform",
"meetingId",
"botName"
],
"type": "object"
}