get_attachment_by_filename
Retrieve a specific JIRA attachment by providing an issue key and filename. Optionally save the attachment directly to disk for easy access.
Instructions
根据问题ID和文件名获取JIRA附件
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
issue_key | Yes | ||
save_to_disk | No |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"issue_key": {
"title": "Issue Key",
"type": "string"
},
"save_to_disk": {
"default": true,
"title": "Save To Disk",
"type": "boolean"
}
},
"required": [
"issue_key",
"filename"
],
"title": "get_attachment_by_filenameArguments",
"type": "object"
}