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:
- Ways to Convert Integer or int to Long in Java - Java
- StringJoiner Example with Java Collections - Java
- How to install Python 2.7.xx on macOS 12.3 Monterey or higher - Python
- Drop table using Java JDBC Template - Java
- Iterate over an Array using Java 8 Stream and foreach - Java
- Fahrenheit to Celsius Temperature Convertor: Tool & Formula - Tools
- How to update all installed packages at once in Ubuntu - Ubuntu
- How to install Android Studio Chipmunk and SDK tools on macOS (2021.2) - Android-Studio