Added by kerz kerz over 5 years ago
Hi everyone,
I try to get new Redmine issues with REST API and I can't ,
something like this : GET /issues.xml?id=%3E10
to get all issues with id > 10 but it's not working.
Someone know if we can do that ?
Thanks
GET /issues.xml?issue_id=%3E%3D10
example taken from wiki: Rest_Issues
Thank
you're right My param name must be issue_id,
but I need > operator and not >= operator
GET /issues.xml?issue_id=%3E10 doesn't work and all sample for wiki use >= ( %3E%3C )
do you know what's wrong ?