Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Get board list of the project

Deepak Govindram Kumbhar April 7, 2022

I am using oauth 2.0 tokens to work with the APIs, till now the APIs are worked for me as follows,

https://api.atlassian.com/ex/jira/{cloud id}/rest/api/2/project

Calling to this API, I am getting the output, now my next steps are to get the board list of the project and then the issue list. But now here I am not able to find the endpoint for it, and whichever I am able to found over internet is some of them giving me unauthorized or

OAuth 2.0 is not enabled for metho. Can someone help me to get the exact endpoints or the correct documentation?

Here are few documentation I am referring.
https://developer.atlassian.com/cloud/jira/software/rest/intro/ - this is version 1 which I am not using.

 

2 answers

1 vote
Prince Nyeche
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.
April 11, 2022

You should look into Jira software endpoint if you're specifically looking into boards https://developer.atlassian.com/cloud/jira/software/rest/api-group-board/#api-rest-agile-1-0-board-boardid-issue-get

If you can get the issues on a board, you can retrieve the board id and use that to query for the specific board details then curate your list of boards. Not a 1 call API but it means you will need to combine a few API to create your own unique endpoint.

0 votes
Trudy Claspill
Community Champion
April 7, 2022

The documentation for v2 and v3 of the REST API for Jira Cloud does not provide an endpoint for getting agile boards. That appears to be available only in v1. 

In my searching so far I have not found any documentation of a workaround for the Jira Cloud API.

You can get the issues list for the project using "search" API and a JQL of your design.

https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-group-issue-search

Suggest an answer

Log in or Sign up to answer