Can't set watchers using REST API on OnDemand

Lee Correll
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.
February 7, 2013

I'm stuck trying to set watchers using the REST API via OnDemand. I've searched thru numerous documentation pages and pages on Answers, but I'm not making any forward progress.

I'm trying

$URL = "-X POST -d '" + '"' + $watcher + '"' + "' https://ourhost.jira.com/rest/api/latest/issue/$clientissue/watchers"

and then executing curl with $URL as tha parameter; I've already got the appropriate header statements and I keep getting a 400 Bad Request error.

Is the problem with OnDemand? Is it different?

2 answers

0 votes
fanluo March 29, 2013

I used JSONObject.quote function to pass the string. It worked.

0 votes
Faisal
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.
February 7, 2013

Hi Lee,

I am able to add a watcher to an issue by running the following cURL command:

curl -D- -u admin:admin -X POST -H "Content-Type: application/json" --data '"username"' http://localhost:8080/rest/api/2/issue/TST-1/watchers

Hence, could you kindly try the same and see if it helps? Although you are running on an OnDemand instance, I believe that the REST API usage should be the same.

I hope that this will help!

TraollyX October 16, 2013

Hello Ahmad,

What was the data json syntax you posted?

Thanks.

TRX

Suggest an answer

Log in or Sign up to answer