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

Suggest an answer

Log in or Sign up to answer
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 Leaders.
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