Hi ,
How can i get all status for a issue.
for example
a issue is first status is New
then it is In-Progress
then it is Resolved
then it is Closed
How i can all of these ?
Updated
I want to do it in JIRA API
Hi @arslan aslam,
I don't think there is a rest endpoint to provide you all status of the workflow used by your issue, even if you retrieve there is no action you can perform with them
But alternatively you can fetch next status and available transitions from current status, from there you can move your issue to next status using rest api
The rest call/endpoint to fetch available transitions from current status is below
rest/api/latest/issue/{issueKey}/transitions
BR,
Leo
Hi @Zita Bagi
With administration rights for your project, you may be able to see the workflow of each ticket.
Go to administration tab > Issue type > "Your issue type" and then you will see it :
Hope it helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Aye, that's right, I thought OP was asking about the particular statuses one exact issue went though.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's not answer of my question , i am using JIRA API and i want to do via REST API Calls.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, you mean you want to see all status transitions at once? If you go into the Issue and under Activity click on the History tab, you can see all changes which happened to the issue, including status changes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for Reply ,
But i want to get all status in JIRA API .
Sorry i forget to mention it in Questions
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.