Hi Everyone!
Im trying to integrate the burn-down chart data details with another chart
But I didn't find any endpoint in the Jira API docs related to the burndown data.
I need the API details
Any suggestion or documentation reference link to achieve this would help
Please share
The burndown charts are generated by calculations using the issue data. There is no "burndown chart data" stored.
You will need to retrieve the issues in the sprint, and read them for their estimates and changes of status.
Thanks Nic for the quick response
kindly help in sharing the api details for retrieving the issues in the sprint
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The simple answer is "use the REST API", but I think it might be better for you to start in the middle!
I would start with a remote system running a JQL query to fetch the list of issues in the sprint. Probably as simple as "sprint = <name of sprint>" and done via REST calls such as the ones you can find in https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/#searching-for-issues-examples
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
/rest/greenhopper/1.0/rapid/charts/scopechangeburndownchart.json?rapidViewId=274&sprintId=834
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Asif663 ! Just wanted to let you know your post was caught in Community's spam filter and I've released it. I also modified the link to not point at your particular Jira.
Swapping in board and sprint IDs to the URL provided though (the rapidViewId will stay the same between sprints, but the spintId will change with each sprint) does give you a JSON slug of the changes that feed into the burndown report.
Cheers!
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.