Snippets

Adaptavist Jira Cloud - How to update a Comment

Created by Kate Kabir

File snippet.txt Added

  • Ignore whitespace
  • Hide word diff
+/*
+ * "This script console script provides an example script for SR for Jira cloud of how to update comment in Jira Cloud 
+ * All right, title and interest in this code snippet shall remain the exclusive intellectual property of Adaptavist Group Ltd and its affiliates. Customers with a valid ScriptRunner 
+ * license shall be granted a  non-exclusive, non-transferable, freely revocable right to use this code snippet only within their own instance of Atlassian products. This licensing notice cannot be removed
+ * or amended and must be included in any circumstances where the code snippet is shared by You or a third party." 
+ */
+ 
+ 
+// Get values out of fields on the issue
+def issueKey = '<Add your issuekey here>' 
+
+def result = post("/rest/api/2/issue/${issueKey}/comment")
+                .header('Content-Type', 'application/json')
+                .body([
+                        body: """
+                    Comment Updated
+                    """ 
+                ])
+                .asObject(Map)
+
+if (result.status == 204) { 
+    return 'Success'
+} else {
+    return "${result.status}: ${result.body}"
+}
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.