asana_get_attachments_for_object
Retrieve file attachments and documents linked to any Asana object such as tasks or projects. Access uploaded files, images, and documents associated with work items.
Instructions
List attachments for an object (task, project, etc)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| object_gid | Yes | The object GID to get attachments for | |
| limit | No | Results per page (1-100) | |
| offset | No | Pagination offset token | |
| opt_fields | No | Comma-separated list of optional fields to include |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Results per page (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"object_gid": {
"description": "The object GID to get attachments for",
"type": "string"
},
"offset": {
"description": "Pagination offset token",
"type": "string"
},
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
}
},
"required": [
"object_gid"
],
"type": "object"
}