my scenario is to fetch all updated issues form JIRA form its rest APIs for a specific date, but seems my request parameters was not work, it alwas returns me all the issues.
the request I send to jira like this:
curl -D- -u myaccount:mypassword -X GET -H "Content-Type:applicaiton/json" --data '{"jql" : "updated > 2020-03-05"}' http://myjiraIPandPort/rest/api/2/search
but if I create this filter in jira web page "updated > 2020-03-05", it will work,
thanks for your help.
Dear @leveldc ,
have you tried instead
curl -D- -u myaccount:mypassword -X GET -H "Content-Type:applicaiton/json" http://myjiraIPandPort/rest/api/2/search?jql=updated+>+2020-03-05
So long
Thomas
Jay! First response after one year. Great SLA! ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hahah, at least there is an answer now :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.