Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,811
Community Members
 
Community Events
184
Community Groups

JSON API returned empty array

I create an issue that follows a workflow as shown below. Screen Shot 2017-06-28 at 11.09.06 AM.png

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 ?

0 comments

Comment

Log in or Sign up to comment