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: 

Put a comment using ScriptRunner Rest Endpoint

Vikrant Yadav
Community Champion
February 5, 2021

Hi Guys, 

 

Need one help, how i can put comment using Script Runner rest endpoint, i want to use to use it with Script Fragment Web item (button)...so that if some click on Reminder button, Comment automatically get added tagging Reporter in Comment. Please suggest..

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

2 votes
John Chin
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.
February 8, 2021

Hi @Vikrant Yadav ,

You can try use the following script to append the comment with the reporter tagging in the comment, for example:

import com.atlassian.jira.component.ComponentAccessor

def commentManager = ComponentAccessor.getCommentManager()
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()

String reporter = issue.getReporter().getUsername()

commentManager.create(issue,user,"Hi [~reporter], add a new comment here",true)

I hope this helps.