send_video_to_meeting
Deliver an MP4 video via HTTPS URL to a Google Meet session using a specified bot ID for playback during the meeting.
Instructions
Send a video to the meeting through the bot (Google Meet only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bot_id | Yes | ID of the bot that should play the video | |
video_url | Yes | HTTPS URL of the MP4 video to play |
Input Schema (JSON Schema)
{
"properties": {
"bot_id": {
"description": "ID of the bot that should play the video",
"type": "string"
},
"video_url": {
"description": "HTTPS URL of the MP4 video to play",
"type": "string"
}
},
"required": [
"bot_id",
"video_url"
],
"type": "object"
}