The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

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 Champions.
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.