action asana_get_attachments_for_object { label: "Get attachments from an object" description: "Returns the compact records for all attachments on the object.\n\nThere are three possible `parent` values for this request: `project`, `project_brief`, and `task`. For a project, an attachment refers to a file uploaded to the \"Key resources\" section in the project Overview. For a project brief, an attachment refers to inline files in the project brief itself. For a task, an attachment refers to a file directly associated to that task." provider: asana method: GET path: "/attachments" encoding: json input: { type: "object" properties: { parent: { type: "string" } } required: ["parent"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }