Hi all,
I am trying to get jira issues within component in a project. Unfortunately, I can not get the jira issues.
Let's assume, I have a project "A", within the project "A", there are multiple components such as "B", "C" and " D".
Now I want get all the issues using REST API?
I can get project and components using REST API, not the issues inside the components?
Can anyone help me with this please?
Thanks in advance
You can get the issues if you use the Search for issues using JQL. All you have to do is use the JQL that select the projects and the components, something like this:
project = A AND components = Something
The documentation should have everything you need.
I don't use the API, but when I add the component field to the issue filter I can specify which component I want. The API should be able to do that. sample filter
change project 'name' and component 'name' to real values
project = name AND issuetype = Test AND component = name AND "Version" = 13.25.0 AND "Test Event" = "User Acceptance Testing (UAT)" ORDER BY summary DESC, key ASC
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.