ticktick_get_task_attachments
Retrieve task attachments by specifying a task ID and optionally filtering by file type, such as images, documents, audio, or video, to manage and organize task-related files efficiently.
Instructions
List task attachments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_type_filter | No | Filter by file type | all |
task_id | Yes | ID of the task |
Input Schema (JSON Schema)
{
"properties": {
"file_type_filter": {
"default": "all",
"description": "Filter by file type",
"enum": [
"all",
"images",
"documents",
"audio",
"video"
],
"type": "string"
},
"task_id": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}