Hi,
Is there any way via the the JIRA Rest API's to work out if a given status is before or after the current status of a given issue?
Thanks,
John
Workflows are not necessarily sequential in Jira, but can also contain cycles, for example. Therefore "before" and "after" are not well defined.
If you know that there is a well-defined sequence of the status in your specific case, then get all statuses and all transitions and reconstruct the sequence based on those.
See: https://docs.atlassian.com/software/jira/docs/api/REST/7.6.1/#api/2/workflow-getAllWorkflows
Ah ok, so for a given project I would need to find the workflow and then use logic to work it out but like you say this would only work in the scenarios where the workflows are sequential (or at the very least the steps being compared are).
I've just had a look at the API you linked but am struggling to see how you get from the project to a defined set of workflow steps?
Thanks,
John
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not familiar with that part of the REST API, but this second question should also be revised.
There is no 1:1 mapping between projects and workflows. Workflows are more tied to project/issue-type pairs.
So:
Something like this.
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.