send_chat_message
Enable bots to send chat messages in meetings by specifying the bot ID and message content. Integrates with platforms like Zoom, Google Meet, and Microsoft Teams.
Instructions
Send a chat message from the bot to the meeting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bot_id | Yes | ID of the bot that should send the message | |
message | Yes | Message text to send |
Input Schema (JSON Schema)
{
"properties": {
"bot_id": {
"description": "ID of the bot that should send the message",
"type": "string"
},
"message": {
"description": "Message text to send",
"type": "string"
}
},
"required": [
"bot_id",
"message"
],
"type": "object"
}