Gmail
GMAIL_GET_ATTACHMENT
Retrieves a specific attachment by id from a message in a user's gmail mailbox, requiring valid message and attachment ids.
Remote gmail
Other tools also called GMAIL_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."
},
"message_id": {
"type": "string",
"title": "Message Id",
"examples": [
"18exampleMessageId7f9"
],
"description": "Immutable ID of the message containing the attachment."
},
"attachment_id": {
"type": "string",
"title": "Attachment Id",
"examples": [
"A_PART0.1_18exampleAttachmentId7f9"
],
"description": "ID of the attachment to retrieve."
}
}
}