You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Dear all,
I have browse documentation on how to create sample custom REST api in script runner but some point are unclear to be
I need to create a simple POST request endpoint which will simply set the status of any issue of what is pass from the body param of the request.
When the external application is calling the POST endpoint SetIssueStatus, then the body parameter should be status =""
From that body status I should be then able to set the issue status
I have no idea and could not find sample on how to do this except basic one I have check already
my starting method is as below :
setIssueStatus(
httpMethod: "POST"
) { MultivaluedMap queryParams, String body ->
===> what to add here to read the status param from received body and then update issue status ??
}
for exemple is recevied status body param = "Completed" then I should set issue status to Completed as well
Thanks for help
regards
You can not just "set the status" of an issue. Your code will need to push the issue through a transition to take it from the current status into a new one.
https://library.adaptavist.com/entity/transition-an-issue-using-issue-input-parameters is an example of a script that transitions an issue.
Thans for your reply @Nic Brough -Adaptavist- I know how to transition an issue through script runner.
What I need to do is how to validate the body which is pass to my script runner endpoint and read the received status
Any idea
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.