getAttachment
Retrieve specific email attachments by ID from an AgentMail inbox using inbox, message, and attachment IDs for efficient AI agent workflows.
Instructions
Get attachment by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachment_id | Yes | ||
inbox_id | Yes | ||
message_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"attachment_id": {
"title": "Attachment Id",
"type": "string"
},
"inbox_id": {
"title": "Inbox Id",
"type": "string"
},
"message_id": {
"title": "Message Id",
"type": "string"
}
},
"required": [
"inbox_id",
"message_id",
"attachment_id"
],
"title": "getAttachmentArguments",
"type": "object"
}