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

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 Leaders.
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

Suggest an answer

Log in or Sign up to answer