backlog_download_attachment
Download a file attached to a Backlog issue and save it to your local filesystem. Provide the issue key and attachment ID to get the saved file path.
Instructions
Download an attachment from a Backlog issue and save it to the local filesystem.
Returns the absolute path where the file was saved, the filename, and the file size. Get the attachmentId from backlog_get_attachments first. The output directory is configured via ATTACHMENT_WORKSPACE in the server's environment.
INPUT:
issueIdOrKey (required): issue key e.g. "BLG-123" or numeric ID
attachmentId (required): numeric ID from backlog_get_attachments
EXAMPLE: { issueIdOrKey: "BLG-123", attachmentId: 42 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueIdOrKey | Yes | Issue key or numeric ID. Examples: "BLG-123", "12345". | |
| attachmentId | Yes | Numeric attachment ID from backlog_get_attachments. Example: 42 |