Get Attachments For Object
asana_get_attachments_for_objectList all attachments on a task or project, returning metadata like gid, name, created_at, and host. Useful for retrieving attachment details without download URLs.
Instructions
List all attachments on a task or project. Returns gid, name, resource_subtype, created_at, and host for each attachment. Use asana_get_attachment to get the download URL for a specific file.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Results per page (1-100). | |
| offset | No | Pagination offset token from a previous response's next_page.offset. | |
| parent | Yes | The GID of the task or project to list attachments for (numeric string, e.g. `'1234567890123'`). | |
| opt_fields | No | Comma-separated extra fields to include. Useful values: `gid,name,resource_subtype,created_at,host,size,download_url,view_url,permalink_url,parent.name`. Default fields: gid, resource_type, name. |