Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,554,229
Community Members
 
Community Events
184
Community Groups

Scriptrunner executing built-in scripts remotely

Hi team, i'm trying to run reindexing remotely via curl on linux. Following the example I created add-opt.json: 

{
"FIELD_FILTER_ID":"39864",
"FIELD_PROJECT_ID":"",
"FIELD_FUNCTION_ID":"",
"canned-script":"com.onresolve.scriptrunner.canned.jira.admin.ReindexIssues"
}

and executed command :

curl -u login:pass "https://jiraURL/rest/scriptrunner/latest/canned/com.onresolve.scriptrunner.canned.jira.admin.ReindexIssues" -H "X-Atlassian-token: no-check" -H "Content-Type: application/json; charset=UTF-8" -H "Accept: application/json" --data "@add-opt.json"

 

The following works perfectly on both of our test servers, however it doesnt on main server. Error is: Can not deserialize instance of java.util.ArrayList out of VALUE_STRING token\n at 

Jira ver 7.2.8

1 answer

1 accepted

1 vote
Answer accepted
Thanos Batagiannis [Adaptavist]
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.
Jul 13, 2018

Hi Pawel,

In your json the only thing you need is the "FIELD_FILTER_ID":"39864" so it will be 

{ "FIELD_FILTER_ID" : "39864" }

 and then for the call something like 

curl -u login:pass -X POST --data @body.json -H "Content-type: application/json" <jira_url>/rest/scriptrunner/latest/canned/com.onresolve.scriptrunner.canned.jira.admin.ReindexIssues

Please let me know if this did the trick. 

Thanos

Thank You for fast reply, but changing the json and call by ur advice didn't help. Still getting ">Can not deserialize instance of java.util.ArrayList out of VALUE_STRING token
at "

Thanos Batagiannis [Adaptavist]
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.
Jul 16, 2018

Which version of ScriptRunner you use ?

ver. 5.3.26 on prod and 5.4.7 on test, however tried already downgrading to 5.3.26 and it worked on test.

Also found some diff in response headers on main server there are additional fields

Content-Security-Policy: default-src 'self' 'unsafe-inline' 'unsafe-eval'; img-src * 'self' data: https
Strict-Transport-Security: max-age=31536000; includeSubDomains
WWW-Authenticate: Negotiate xxx
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events