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?
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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you... in the JQL query, how do I request the sprint field to be added?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.