add_attachment_from_confluence
Attach files from Confluence to Jira tickets by specifying the issue ID, page ID, and attachment name for streamlined workflow integration.
Instructions
Add an attachment to a ticket on Jira from a Confluence page by its name on the api /rest/api/3/issue/{issueIdOrKey}/attachments. Do not use markdown in your query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachmentName | Yes | The name of the attachment | |
issueIdOrKey | Yes | The issue id or key | |
pageId | Yes | The page id |
Input Schema (JSON Schema)
{
"properties": {
"attachmentName": {
"description": "The name of the attachment",
"type": "string"
},
"issueIdOrKey": {
"description": "The issue id or key",
"type": "string"
},
"pageId": {
"description": "The page id",
"type": "string"
}
},
"required": [
"issueIdOrKey",
"pageId",
"attachmentName"
],
"type": "object"
}