asana_download_attachment
Download Asana attachments to your local directory using attachment GID for offline access and file management.
Instructions
Download an attachment locally
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| attachment_gid | Yes | The attachment GID to download | |
| output_dir | No | Directory to save the file (defaults to ~/downloads) |
Input Schema (JSON Schema)
{
"properties": {
"attachment_gid": {
"description": "The attachment GID to download",
"type": "string"
},
"output_dir": {
"description": "Directory to save the file (defaults to ~/downloads)",
"type": "string"
}
},
"required": [
"attachment_gid"
],
"type": "object"
}