Hi @Abilash
It is not possible to extract that information via a JQL in Jira. There is a pretty extensive REST-api where you can extract a lot of information.
Here is a link to the REST Api's https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#about
Best regards,
/Staffan
It depends how you want the information displayed, for example here's a Prompt you can use in Rovo:
Please answer the following 3 questions:
Who is the owner of this space?
What is the project type of this space?
Who are the project members in this space? When answering this question only return active members.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Abilash
@Staffan Redelius is right, since JQL only searches for issues, you cannot use it to extract project metadata. Here are the three quickest ways to get this data:
The REST API Way:
GET /rest/api/3/project/search?expand=lead
Which returns project name, type, and owner
GET /rest/api/3/project/{projectKey}/role
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.