Gmail
GMAIL_FETCH_MESSAGE_BY_MESSAGE_ID
Fetches a specific email message by its id, provided the `message id` exists and is accessible to the authenticated `user id`.
Remote gmail
Other tools also called GMAIL_FETCH_MESSAGE_BY_MESSAGE_ID?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"format": {
"type": "string",
"title": "Format",
"default": "full",
"examples": [
"minimal",
"full",
"raw",
"metadata"
],
"description": "Format for message content: 'minimal' (ID/labels), 'full' (complete data), 'raw' (base64url string), 'metadata' (ID/labels/headers)."
},
"user_id": {
"type": "string",
"title": "User Id",
"default": "me",
"examples": [
"[email protected]",
"me"
],
"description": "User's email address or 'me' for the authenticated user."
},
"message_id": {
"type": "string",
"title": "Message Id",
"examples": [
"xsdfe3264vrfw"
],
"minLength": 1,
"description": "Unique ID of the email message to retrieve, obtainable from actions like 'List Messages'."
}
}
}