Rest API ticket list
Is there currently a way to get a list of issue ids that follow a specific filter without getting the other information about the tickets and can return more than 500 results? I am currently using
http://myproject.myjetbrains.com/youtrack/rest/issue/byproject/E?q={filter}&max=10000 but I am only getting 500 results and there should be over 1000 tickets caught by the filter.
http://myproject.myjetbrains.com/youtrack/rest/issue/byproject/E?q={filter}&max=10000 but I am only getting 500 results and there should be over 1000 tickets caught by the filter.
Please sign in to leave a comment.
What about your first question, about getting only issue ids - you can make id adding "with" parameter: http://myproject.myjetbrains.com/youtrack/rest/issue/byproject/E?q={filter}&max=10000?with=numberInProject you can list all other fields you need this way.
About getting only 500 issues. Please, check your Settings page in Admin menu - "Max Issues to Export" parameter should be set to issues count that you actually need.