Set confluence attachment parameters from Jira

Gaston Valente
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 21, 2019

Hi!

I'm uploading files into confluence pages from Jira using ScriptRunner

String filePath = PathUtils.joinPaths( pathManager.getAttachmentPath(), sourceIssue.getProjectObject().getKey(), "10000" , sourceIssue.getKey(), attachment.getId().toString())

File file =new File(filePath)

List fileParts = new ArrayList() def requestFilePart = new RequestFilePart("application/octet-stream", attachment.getFilename(), file, "file") fileParts.add(requestFilePart)

def request = appLinkAuthRequestFactory.createRequest(Request.MethodType.POST, "/rest/api/content/"+pageData["id"]+"/child/attachment") .addHeader("X-Atlassian-Token","no-check") .setFiles(fileParts)

It is working fine but i need to specify minorEdit or comment params to the uploaded file.

Is that possible using appLinkAuthRequestFactory.createRequest?

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events