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: 

How to send HTTP post Request via Scriptrunner Post function to receive JSON response

srikanth kocherlakota
January 21, 2020

Hi Everyone,

 We have done the integration from jira to pager duty.

When the ticket is created in jira, Automatically it should trigger the event in the pagerduty.

While adding the scripted post function during create transition getting below errors,

The variable [body] is undeclared, [variable response is undeclared] and No such property:messages for class: java.lang.object..

the following script as follows:

import groovyx.net.http.ContentType
import groovyx.net.http.HTTPBuilder
import groovyx.net.http.Method
import groovy.json.JsonBuilder
import groovy.transform.BaseScript

if(issue.issueType.name=="ZIA OPS Escalation"){

def http = new HTTPBuilder("https://events.pagerduty.com/generic/2010-04-15/create_event.json")
def summary = issue.summary
def issueDetails = "ZIA OPS Escalation " + issue.key
def body
def issueJson = http.request(Method.POST, ContentType.JSON) {
body [ "service_key": "77011ebbefad47dd987f045636e04390","event_type": "trigger", "description": "summary", "details": "issueDetails"]
response.success = { resp, json ->
log.debug("PagerDuty Trigger Successful = " + json.messages)
}
response.failure = { resp, json ->
log.debug("PagerDuty Trigger Failed = " + json.messages)
}
}
}

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
serge calderara
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.
April 29, 2020

@srikanth kocherlakota , I have the same problem when tetiing HTTP b uilder in script console, it says body, response, header are undeclared .

Did you find the problem?

regards

TAGS
AUG Leaders

Atlassian Community Events