Google Super
GOOGLESUPER_GET_ATTACHMENT
Retrieves a specific attachment by ID from a message in a user's Gmail mailbox, requiring valid message and attachment IDs.
Remote googlesuper
Other tools also called GOOGLESUPER_GET_ATTACHMENT?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"user_id": {
"type": "string",
"title": "User Id",
"default": "me",
"examples": [
"me",
"[email protected]"
],
"description": "User's email address ('me' for authenticated user)."
},
"file_name": {
"type": "string",
"title": "File Name",
"examples": [
"invoice.pdf",
"report.docx"
],
"description": "Desired filename for the downloaded attachment. Make sure that file_name is passed"
},
"message_id": {
"type": "string",
"title": "Message Id",
"examples": [
"18exampleMessageId7f9"
],
"description": "Immutable ID of the message containing the attachment. Make sure that message_id is passed and is valid, not a placeholder or NULL."
},
"attachment_id": {
"type": "string",
"title": "Attachment Id",
"examples": [
"A_PART0.1_18exampleAttachmentId7f9"
],
"description": "ID of the attachment to retrieve. Make sure that attachment_id is passed and is valid, not a placeholder or NULL."
}
}
}