Hi Team,
I know that url "jira/rest/api/2/issuetype" is used to get all the issuetype in jira api. I tried the same mentioned URL in Postman app which is giving me the list of issue type in json format. but I want to get only those issue type which I have used to create issues in my project.
for ex: suppose I have used [ Story, Epic and Defect ] these 3 issue types only in my project at the time of creating any issue. so, when I try to get all issue types, then jira api should only give me these 3 mentioned issue type.
please help with the solution which I could test in Postman app to check.
In api call provide the jql filter like jql=issuetype in (story,epic) and then you will get the required issues types only.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.