The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I like to use HttpBuilder or its simplified RESTClient
The simplest way to make a POST request is with the RESTClient
import groovyx.net.http.HTTPBuilder
import groovyx.net.http.RESTClient
import groovyx.net.http.Method
import groovyx.net.http.ContentType
def url = "https://some.domaim/"
def rest = new RESTClient(url)
def payload = [key:'value']
try{
def response = rest.post(path:'endpointpath'. body:payload,requestContentType:ContentType.JSON)
if(response.status == 200){
return "Success"
}
} catch(ex){
return "POST failed with status: $ex.response.status"
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This was just an example, ultimately, you should review the documentation for ScriptRunner and HTTPBuilder.
But I see that I have a typo in my quickly put together example. I have dot where it should be a comma in the post method.
import groovyx.net.http.HTTPBuilder
import groovyx.net.http.RESTClient
import groovyx.net.http.Method
import groovyx.net.http.ContentType
def url = "https://some.domaim/"
def rest = new RESTClient(url)
def payload = [key:'value']
try{
def response = rest.post(path:'endpointpath', body:payload, requestContentType:ContentType.JSON)
if(response.status == 200){
return "Success"
}
} catch(ex){
return "POST failed with status: $ex.response.status"
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone, We’re always looking at how to improve Confluence and customer feedback plays an important role in making sure we're investing in the areas that will bring the most value to the most c...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.