list-issue-attachments
Retrieve all file attachments associated with a specific issue in a Plane project to access supporting documents and media files.
Instructions
List all file attachments for an issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | ID of the issue to get attachments from | |
| project_id | Yes | ID of the project containing the issue |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the issue to get attachments from",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id"
],
"type": "object"
}