how can I find which jira project it is by the given projectId that I have?
Hi @Vera Valshonok
Welcome to the community!
In JQL you can type "project = <project id>" and it will list the issues. From there you can get to the project.
Regards,
Sushant Verma
Or you can use the Jira API
You can use the API call:
https://your-domain.atlassian.net/rest/api/3/project/{projectIdOrKey},
Replace {projectIdOrKey} with you projectId
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I agreed with both previous members suggested. The easiest way will be using Issue search UI and switch it to JQL mode and put in "project = <your projectID>". Where in the resultset, you will see all the issues associated with the projectID in question.
From there you can just click on any of the issues to go into your project.
Hope this also helps.
Best, Joseph Chung Yin
Jira/JSM Functional Lead, Global Technology Applications Team
Viasat Inc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1. Project settings
(You need to be a Project Admin.)
Go to: Project settings > Notifications > Project email audit.
And in the URL, you will find the projectId, e.g.:
issue-logs?projectId=10074
2. API
Also, using the API:
https://yourdomain.atlassian.net/rest/api/latest/project/{projectIdOrKey}
Replace {projectIdOrKey} with your projectkey
Best, Gabriel Rojas
Deckard Technologies
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.