send_message
Send messages to Google Chat spaces directly using user email, space ID, and message text. Confirm delivery with detailed response.
Instructions
Sends a message to a Google Chat space.
Returns: str: Confirmation message with sent message details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message_text | Yes | ||
space_id | Yes | ||
thread_key | No | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"message_text": {
"title": "Message Text",
"type": "string"
},
"space_id": {
"title": "Space Id",
"type": "string"
},
"thread_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Thread Key"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"user_google_email",
"space_id",
"message_text"
],
"type": "object"
}