You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hello, well like the title says, i am trying to get the board configuration of a project
Right now, i iterate over all board and catch the project that i want, but this is to bad for performance in my system
there is a way to get the board directly from de project??
I want the board to get board configuration and render my jira columns
Thanks!!
Hi Robertino
The problem with what you're trying to do is this :
A board is a view into a number of tickets (defined by the filter used for that board) and can be across projects. We often have multiple boards for the same project, which is why you can't expect Jira to be able to tell you which board relates to a specific project.
ahh okey, so the way that i am doing right now is okey?
iterate over all board /rest/api/2/board
then /rest/api/2/board/id/projects and catch what i need
i found another call /rest/greenhopper/1.0/rapidview, it can be that parentProjectid and id fields in this call may be what i want?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i just think this is a much older version of a similar call. Keep doing what you are currently
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.
Is this still the best way to see all boards for some projects?
This post is a few years old.
> iterate over all boards for their ids, then return the related projects?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @kn.wh
Yes I believe so. The API has moved from v2 to v3, where there have been some structural changes to the calls, but I still don't think there's an easier way. To be honest, having ti coded and running automatically, it shouldn't take that long to get the details.
It may also be worth checking, exactly what are you after? what are you trying to get?
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It seems you can get boards by project id here: https://developer.atlassian.com/cloud/jira/software/rest/api-group-other-operations/#api-agile-1-0-board-get
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is possible to get boards associated to a jira project using the following REST api,
Rest Endpoint: /rest/agile/1.0/board?projectKeyOrId={Project Key}
Method Type: GET
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, your answer is very much appreciated. I was wondering if there is an endpoint allowing to retrieve the properties of a given board. For instance, imagine I'm trying to get the columns I've defined, as well as the statuses that belong to each one of them. Any ideas?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.