Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to create a simple POST custom REST for setting issue status

serge calderara
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.
August 2, 2021

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

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
0 votes
Answer accepted
Nic Brough -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.
August 2, 2021

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.

serge calderara
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.
August 2, 2021

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

TAGS
AUG Leaders

Atlassian Community Events