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: 

Get kanban board issues with columns and ranking via API

grohotun
November 29, 2017

We want to access to board via API.

I've found this - https://*******.atlassian.net/rest/agile/1.0/board/15

I can get board info with all issues.

But I cannot get issues info: board column & ranking in this column.

How can I get this info?

 

 

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Warren
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
November 29, 2017

Hi Danila

The board column is just the status of each item. In fact status is better than column, because you could have more than one status showing in the same column.

As for ranking, it is returned in the JSON, but it isn't a meaningful item, mine shows, for one issue as 

"customfield_10011":"0|i004n3:"

Instead, as part of the call, sort the issues by rank, so from your call above, use 

https://*******.atlassian.net/rest/agile/1.0/board/15.issue?jql=ORDER BY rank

and add either ASC or DESC

grohotun
November 29, 2017

Yes, it seems to be working, thanks