Actions
Defect #10260
openThe issues API filters out closed issues by default
Status:
New
Priority:
Normal
Assignee:
-
Category:
REST API
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Affected version:
Description
The GET /issues.xml
API only shows open issues when called without arguments.
For an API it is strange to apply such a filter by default?
I understand that the API uses the same code as the web interface for queries, but an API does not show that this default filter is on, as the web interface does.
(adding a warning/notice in the API docs would be nice too for versions where this is already the norm)
Updated by Robert Zieschang about 12 years ago
Confirm that. It's still the same behaviour in 2.0.3
I need all issues regardless their Status when called without parameters for implementing in our company intranet.
Updated by Kurtis Lininger over 7 years ago
I was about to write "hey, this is still a problem" until I read the API notes again. To pull all types of issues, use
status_id=*
Actions