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

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

Suggest an answer

Log in or Sign up to answer