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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I create an issue that follows a workflow as shown below.
When i call `rest/api/2/issue/<issue-id>/transitions` after creating an issue (which is in `OPEN` status now) it returns below JSON
`
{
"expand": "transitions",
"transitions": [
{
"id": "4",
"name": "Start Progress",
"to": {
"self": "URL",
"description": "This issue is being actively worked on at the moment by the assignee.",
"iconUrl": "URL",
"name": "In Progress",
"id": "3",
"statusCategory": {
"self": "URL",
"id": 4,
"key": "indeterminate",
"colorName": "yellow",
"name": "In Progress"
}
},
"fields": {}
}
]
}
`
When i make the same call after i change the issue status to "IN PROGRESS" i get back
`
{
"expand": "transitions",
"transitions": []
}
`
My questions are
- In the first response shown above, i expected "CLOSED", "RESOLVED" along with "IN PROGRESS". But, i get back only "IN PROGRESS". Why ?
- I expected the second response to contain "CLOSED", "RESOLVED" and "OPEN" but, it returns an empty array. Why ?
- Please explain the responses from this API
- What call should i have to make to the next possible transitions ?