You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi All,
How to identify if the existing project is a scrum or Kanban project in Jira server and project does not have any boards associated.
Regards,
Suma
according to the tags which were set here in Community you are using Jira Core (Server) which does not bring Kanban and Scrum functionality (Software Boards) with it.
The screenshot you shared seems to add to this - there is no visible option for Software Boards.
While there is a Suggestion open with Atlassian to have Kanban boards also in Jira Core (https://jira.atlassian.com/browse/JRASERVER-45690) the current implementation says that you would need Jira Software to use them.
Regards,
Daniel
The API Call is good with this.
https://docs.atlassian.com/software/jira/docs/api/REST/7.6.1/#api/2/project/type-getAllProjectTypes
GET /rest/api/2/project/type
You can also check with the Reports available, Icon provided in Jira :-)
Thanks,
Pramodh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
FYI,
Then use JSON to CSV Converter to get the data in Excel.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Pramodh,
Seems the project to be Kanban as per the reports available for the project. Also i see project type as Business project not software type.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please pardon me.
The best way to do it is API as I said earlier
So the API Request goes like this
curl -D- -u 'username:password' -H "Content-Type: application/json" -X GET http://your-domain/rest/api/2/project/type
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.