search_messages
Search Google Chat spaces for specific messages by query. Returns a formatted list of matched messages for efficient communication tracking and retrieval.
Instructions
Searches for messages in Google Chat spaces by text content.
Returns:
str: A formatted list of messages matching the search query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_size | No | ||
query | Yes | ||
service | Yes | ||
space_id | No | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_size": {
"default": 25,
"title": "Page Size",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
},
"service": {
"title": "service",
"type": "string"
},
"space_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Space Id"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"service",
"user_google_email",
"query"
],
"title": "search_messagesArguments",
"type": "object"
}