add_attachment_from_public_url
Attach files from a public URL to a Jira ticket using the /rest/api/3/issue/{issueIdOrKey}/attachments endpoint for streamlined file management.
Instructions
Add an attachment from a public url to a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/attachments. Do not use markdown in your query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imageUrl | Yes | The URL of the image to attach | |
issueIdOrKey | Yes | The issue id or key |
Input Schema (JSON Schema)
{
"properties": {
"imageUrl": {
"description": "The URL of the image to attach",
"type": "string"
},
"issueIdOrKey": {
"description": "The issue id or key",
"type": "string"
}
},
"required": [
"issueIdOrKey",
"imageUrl"
],
"type": "object"
}