ticktick_download_task_attachment
Download task attachments from TickTick using task and attachment IDs. Supports original or compressed file formats for efficient file retrieval and management.
Instructions
Download attached files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachment_id | Yes | ID of the attachment | |
download_format | No | Download format | original |
task_id | Yes | ID of the task |
Input Schema (JSON Schema)
{
"properties": {
"attachment_id": {
"description": "ID of the attachment",
"type": "string"
},
"download_format": {
"default": "original",
"description": "Download format",
"enum": [
"original",
"compressed"
],
"type": "string"
},
"task_id": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"task_id",
"attachment_id"
],
"type": "object"
}