You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am calling a REST Endpoint utilizing HTTPBuilder. I thought I had a pretty solid example from this post.
I can successfully call the REST Endpoint from Postman with Basic authentication.
However, I am getting a couple of errors in the script console.
The request object should be resolved from the http object is my understanding, but no addHeaders() method appears in the code completion.
CODE
import groovyx.net.http.HTTPBuilder
import static groovyx.net.http.ContentType.*
import groovyx.net.http.ContentType
import static groovyx.net.http.Method.*
def http = new HTTPBuilder('https://<host>/rest/scriptrunner/latest/custom/getLicenseStat')
http.headers = [Accept: 'application/json', charset: 'UTF-8']
def authString = "<acct>:<pass>".getBytes().encodeBase64().toString();
http.request(POST, ContentType.JSON) {
requestContentType = ContentType.JSON
request.addHeader("authorization: Basic ${authString}", "ContentType: application/json")
body = [user: '<username>']
response.success = { resp, JSON ->
return JSON
}
}