Share my sprint with my visitors

Victoria De Lucas May 7, 2021

Hello !
I would like to set up a page on my website that would display the list of my sprints and their associated issue according to a tag name. 


Is it possible while guaranteeing maximum security?

I tried some manipulation such as : "/rest/agile/1.0/board/1/sprint/16/" 

but it is necessary it is connected to access it.

I use laravel as php frameworks.

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 7, 2021

Do you mean you want to "scrape" your Jira for sprint information, then reformat it for a non-Jira page on your site?

If so, then you are most of the way there.  You will need your website to authenticate to Jira as a user who can see all the sprints you want, and then yes, use REST calls to urls such as the one you suggest.  

You'll probably want to use /rest/agile/1.0/board to get a list of all the boards, then iterate over the results to get all the sprints from /rest/agile/1.0/board/{boardId}/sprint 

Victoria De Lucas May 7, 2021

Yes, I tried this route this afternoon. It's always good to have an opinion on this! Thanks

Suggest an answer

Log in or Sign up to answer