Hey guys I have been having trouble with the Rest API to find all the issues that have changed status to done in the past week.
I have tried multiple things such as using the direct quarry from Jira's advanced search as well as the encoded version of that. The problem is that as soon as I use the search quarry that includes a date from Jira's advanced search in Node Js or Postman (for testing) the quarry doesn't provide the correct results.
For example this is not returning the correct issues:
https://paperapp-labs.atlassian.net/rest/api/3/search?jql=status changed TO 'Done' AFTER 2020-10-19
You can try using URL encoding:
https://paperapp-labs.atlassian.net/rest/api/3/search?jql=status%20changed%20 TO%20%22Done%22%20AFTER%20%222020/10/19%22
Here's the encoding safe charaters that I used to translate: https://wiki.hostbridge.com/display/DOC/URL+Encoding+Unsafe+and+Reserved+Characters
I have tried using URL encoding still the same problem
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.