You can get a list of all your Jira projects using REST API. The query can be tested using Postman (Basic Auth and GET) or even directly from the browser before using.
The REST API will return all projects which current logged in user or username provided in Postman has access to.
⭐ REST API to get all Jira projects
https://c2c.atlassian.net/rest/api/2/project
Replace the domain with yours and use "/rest/api/2/project"You may try and execute this directly from the browser by pasting the link in the address bar.
This may not return all projects, but only which logged in account has access to (either as browse projects or administrator projects). If no user is logged in, it returns all projects that may be visible to anonymous users.
If you do not have access to any projects, it will return empty results as [].
⭐ Postman - get all Jira projects
What if you want to pull Jira projects and display them in a third party / external application. You will need to use an API Token (username and password key) in such case. Refer Create API Token for Atlassian account for steps to generate the token.Postman comes handy for testing the authentication and REST link before using it or passing it to a developer for usage.
We will use a GET method with basic authentication to request data from the Jira API.
Authorization = Authorization tab ==> Basic Auth ==> provide Username and Password
HTTP Method = GET
Url Link = https://company.atlassian.net/rest/api/2/project
Click "Send" and you will get response with list of all Jira projects as shown in below image.
Get Jira projects using Rest - Postman
⭐ Limit Jira projects in REST API
You can even limit the projects using JQL search (Jira Query Language) by appending "/search?jql=&maxResults=100" (example to return 100 projects) to the REST API.https://c2c.atlassian.net/rest/api/2/project/search?jql=&maxResults=100
You can even use the GET request /rest/api/3/project/search to return Jira projects via search.
Have Questions? Post them here!
More Posts related to Jira,
More Posts:
- Find and Replace Multiple different words with the same word in a text file - NotepadPlusPlus
- Git Commit - Author identity unknown, Please tell me who you are email - Git
- JavaScript : Get url protocol HTTP, HTTPS, FILE or FTP - JavaScript
- How to resolve Failed to create interpreter PyCharm Error - Python
- Java + Spring JDBC Template + Gradle Example - Java
- How to Open PowerShell on Mac? - Powershell
- Shortcut: Cut (or Delete) current line in Visual Studio Code (VSCode) - HowTos
- [Mac] To open Eclipse you need to install the legacy java se 6 runtime - Mac-OS-X