Release Burndown chart data

Matt Wallace November 26, 2018

I'm building an external reporting dashboard that uses our teams Jira data. We are using the Jira server. I would like to include release burndown charts for various projects. My questions are:

1) Can I get burn down data from the Jira API

2) Or, is there an add on or widget that I can use to embed a burn down chart into our dashboard? 

1 answer

1 accepted

0 votes
Answer accepted
Matt Wallace November 27, 2018

I realize I may need to construct this data from the API - but this also doesn't seem straight forward. How could I get a list of sprints that are assigned to a specific version? If I can get this, then I can get all the issue data for each sprint

Raimundas Juska
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 27, 2018

You can call api/2/search with a JQL - fixVersion = "your version" and request for sprint field to be included. To find sprint field name call api/2/fields.

Like Tom Willis likes this
Matt Wallace November 28, 2018

Thank you... in the JQL query, how do I request the sprint field to be added?

Raimundas Juska
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 28, 2018

See documentation - https://docs.atlassian.com/software/jira/docs/api/REST/7.12.0/?_ga=2.4542513.343205088.1542558020-190871020.1538306682#api/2/search

Example request:

{ "jql": "project = HSP", "startAt": 0, "maxResults": 15, "fields": [ "summary", "status", "assignee" ] }

Specify spint field name (which you get from api/2/fields) in request fields.

Matt Wallace November 28, 2018

Thank You!

Suvonkar April 2, 2019

@Matt Wallace , I have the same requirement. I need to fetch the version data and prepare burndown chart by AMChart externally using rest api. Could you please share how you have addressed this requirement. 

Like Christina Mimler likes this

Suggest an answer

Log in or Sign up to answer