get_messages
Retrieve and format messages from a Google Chat space using service details, user email, and space ID to access organized communication data.
Instructions
Retrieves messages from a Google Chat space.
Returns:
str: Formatted messages from the specified space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_by | No | createTime desc | |
page_size | No | ||
service | Yes | ||
space_id | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"order_by": {
"default": "createTime desc",
"title": "Order By",
"type": "string"
},
"page_size": {
"default": 50,
"title": "Page Size",
"type": "integer"
},
"service": {
"title": "service",
"type": "string"
},
"space_id": {
"title": "Space Id",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"service",
"user_google_email",
"space_id"
],
"title": "get_messagesArguments",
"type": "object"
}