Getting limited fields from a get issue list response
Hi,
I'm trying out the GET issue list: http://confluence.jetbrains.com/display/YTD4/Get+the+List+of+Issues
And I get most of the information from all the issues in the list, but that sometimes can be too heavy on my app.
Is there a way to just fetch certain fields from the issue list? like another parameter that specifies which fields I want, like for example, all the listed issues that only return the id, project, summary and resolved.
Thanks
I'm trying out the GET issue list: http://confluence.jetbrains.com/display/YTD4/Get+the+List+of+Issues
And I get most of the information from all the issues in the list, but that sometimes can be too heavy on my app.
Is there a way to just fetch certain fields from the issue list? like another parameter that specifies which fields I want, like for example, all the listed issues that only return the id, project, summary and resolved.
Thanks
Please sign in to leave a comment.
You can use "with" query parameter. F.e.
get /issue?with=comment&with=Priority
will return only priorities and comments.
Is it what you need?