get_attachment
Download email attachments to a specified file path using the Microsoft MCP server. Input email ID, attachment ID, save path, and account ID to retrieve and store attachments efficiently.
Instructions
Download email attachment to a specified file path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
attachment_id | Yes | ||
email_id | Yes | ||
save_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"attachment_id": {
"title": "Attachment Id",
"type": "string"
},
"email_id": {
"title": "Email Id",
"type": "string"
},
"save_path": {
"title": "Save Path",
"type": "string"
}
},
"required": [
"email_id",
"attachment_id",
"save_path",
"account_id"
],
"type": "object"
}