I've been digging around documentation for JIRA's latest REST API (6.0.1) to try and dig out information about a particular dashboard (I'm playing around with Dashing to create a widget displaying the number of open issues in a particular sprint). According to this:
https://developer.atlassian.com/static/rest/jira/6.0.1.html
jira.com/rest/api/2/dashboard/11311 will only give me something like:
{
"id": "11311",
"name": "blah",
"self": "jira.com\/rest\/api\/2\/dashboard\/11311",
"view": "jira.com\/secure\/Dashboard.jspa?selectPageId=11311"
}
which doesn't exactly give me a lot of information.
In greenhopper times, we could get more useful information with something like:
/rest/greenhopper/1.0/xboard/work/allData.json?rapidViewId=#{board_id}"
(Taken from here) but that seems to not work now..Any ideas if there's another endpoint which might return more information?