download-attachments
Retrieve email attachments by specifying the email ID and optional shared mailbox using Microsoft Outlook integration via the Microsoft Graph API.
Instructions
Downloads information about email attachments
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| emailId | Yes | ID of the email to get attachments from | |
| sharedMailbox | No | Email address of shared mailbox (e.g., 'shared@company.com') |
Input Schema (JSON Schema)
{
"properties": {
"emailId": {
"description": "ID of the email to get attachments from",
"type": "string"
},
"sharedMailbox": {
"description": "Email address of shared mailbox (e.g., 'shared@company.com')",
"type": "string"
}
},
"required": [
"emailId"
],
"type": "object"
}