How to navigate to project using project id?

Wobo January 16, 2020

If i have the project id, can i navigate/open the using a url? 

 

I can do that using the project key:

Ex: https://{HOST}/browse/{PROJECT_KEY}

 

If I do that using the project id:

Ex: https://{HOST}/browse/{PROJECT_ID}

I get an error saying:

Project Does Not Exist

The project or issue you are trying to view does not exist. Try browsing for projects.

 

Thanks!

3 answers

1 vote
DPKJ
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 16, 2020

@Wobo  Welcome the to community!

In Jira, `KEY` is what primarily exposed to users, so all URL are based upon this. For example,

  • View project issues,
    • BASE_URL/browse/PROJECT_KEY
  • Vies issue,
    • BASE_URL/browse/ISSUE_KEY

But if you have ID and want to view project issues, you can use JQL or search urls. For examples,

  • BASE_URL/issues?jql=project=PROJECT_ID

 

Otherwise as @Sasha  suggested REST API is your solution.

0 votes
Deleted user October 18, 2021

In JQL you can do "project = <project id>" and it will list the issues.  From there you can get to the project.

0 votes
Sasha
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 16, 2020

From what I can see a key is the only expected thing in these URLs. I guess if the only thing you have is an ID, you can call `/rest/api/3/project/<ID>` and get key from there (https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-project-projectIdOrKey-get)

Suggest an answer

Log in or Sign up to answer