Hi,
I have the following code (in ScriptRunner):
def curl = "/usr/bin/curl u<username>:<password> -i -X GET -H \"Content-Type: application/json\" http://bipgjiratest:8080/rest/api/2/search?jql=status%20=%20Open%20ORDER%20BY%20cf[11600]%20DESC,%20created%20DESC&maxResults=1&fields=id,key"
output = curl.execute().text
I'm able to see the curl string (command) went in. However, I can get an output. How can I retrieve the output and be able to parse the string for the needed value (issue id).
the problem I'm trying to solve is based on the ID returned, I need to move it to the bottom of the rank. Is there an easy way to achieve that?
Any help is greatly appreciated. Thanks in advanced.
Regards,
Caleb
Though this command perfectly fine when running through command prompt but when running through script runner console it is not working for me. Command below
curl -H "Content-Type: application/json" -d "
{\"text\": \"Hello World\"}
Hi Caleb,
To get the output from a curl, you should use curl.execute().err.text
Regards,
Joachim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.