Defect #36542
closedprojects.xml API doens't include closed projects since redmine v4.1
0%
Description
Before redmine v4.1 the /projects.xml API returned active and closed projects.
With v4.1 and upwards only active projects are returned and there isn't an option to include them (as far as I can read from the corresponding src file).
It seems the change happened with this commit: https://github.com/redmine/redmine/commit/6c5440a21b491982c02531c82b4416ef212eb3dc
Related issues
Updated by Mizuki ISHIKAWA almost 3 years ago
I have described three ways to get information about status closed (id: 5). Could you please try with this?
- Save a custom query configured to include the closed project and set its query.
http://<Redmine url>/projects?query_id=<query id>&key=<API key>
http://<Redmine url>/projects.xml?f[]=status&op[status]==&v[status][]=1&v[status][]=5&key=<API key>
http://<Redmine url>/projects.xml?status=5&key=<API key>
results(closed projects) +http://<Redmine url>/projects.xml?status=1&key=<API key>
results(open projects)
- Add a method for adding filter conditions
- Add a description that previously included projects that were closed by default, but are no longer included
Updated by Christoph Klaffl almost 3 years ago
Using
https://<Redmine url>/projects.xml?f[]=status&op[status]==&v[status][]=1&v[status][]=5&key=<API key>
works. Thank you!
Updated by Holger Just over 2 years ago
- Related to Feature #29482: Query system for Projects page added
Updated by Holger Just over 2 years ago
You can also override the default status filter with en empty filter value to get a list of all projects (open, closed or archived):
GET /projects.xml?status=
To get only open or closed projects, you can also use the following short filter to get open projects (status = 1) or closed projects (status = 5):
GET /projects.xml?status=1|5
Updated by Marius BÄ‚LTEANU about 2 years ago
- Status changed from New to Closed
- Resolution set to Fixed