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,560,622
Community Members
 
Community Events
185
Community Groups

Script Listener to set the Priority field

HI, anyone managed to set the Priority field (either by id or description) in ScriptRunner for Jira Cloud.  I cant seem to find an accurate example to do this.  So far I have this....  Thanks in advance

 

def update = put("/rest/api/2/issue/${issue.key}")
.header('Content-Type', 'application/json')
.body([
fields: [
summary: "New Summary here",
priority:"Critical (P1)"
]
])
.asString()

 

 

I get this error...

PUT request to /rest/api/2/issue/HOTMOD-4328 returned an error code: status: 400 - Bad Request
body: {"errorMessages":[],"errors":{"priority":"Specify the Priority (id or name) in the string format"}}

 

1 answer

1 vote
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Sep 28, 2021

The field needs to know if you're feeding it an id or a name, it's not a string like summary.

So this works for me:

priority : [
id: 42
]

Where 42 is the ID of "My Priority"

I think you might want:

priority : [
name: "Critical (P1)"
]

thanks for taking the time to post this.  After may retries I ended up with the below code and it works perfectly.

 

def priorityField = get("/rest/api/2/field")
.asObject(List)
.body
.find {(it as Map).name == 'Priority'} as Map

 

def result = put("/rest/api/2/issue/${issue.key}")
.header('Content-Type', 'application/json')
.body([
fields:
[
(summary:"New Summary here",

priorityField.id):[name: "Critical (P1)"] as Map
]
])
.asString()

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events