The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Is it possible to transition a Service Desk issue using the API in Jira Cloud

Anuj M Kachapati
June 11, 2021

Hello, I was wondering how can I go about changing the status of an issue in Jira Service Desk through the API? I'm getting the following response with no available transition even though the same user can change the issue status in the UI. 

 

{
"size": 0,
"start": 0,
"limit": 50,
"isLastPage": true,
"_links": {
"self": "https://grepsr.atlassian.net/rest/servicedeskapi/request/MC-91/transition",
"base": "https://grepsr.atlassian.net",
"context": ""
},
"values": []
}

 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Answer accepted
Charlie Misonne
Community Champion
June 11, 2021

Transitioning issues via the REST API is definitely supported. You can see the documentation and an example on this page.

You have to provide the transition ID in your json payload.

Can you share the request you're actually making and the response code you're getting? Should be 201, 400, 401 or 404

Anuj M Kachapati
June 11, 2021

Thank you for your response Charlie. This worked for us

https://grepsr.atlassian.net/rest/api/2/issue/{issue.id}/transitions?expand=transitions.fields

The "?expand=transition.fields" part was needed to make it work

Charlie Misonne
Community Champion
June 11, 2021

Ok good to know!