I need to fetch all issues that was created between two dates with specified reporter.
For Example,
January 1, 2013 to March 15, 2013.
Here's the URL that I'm using for the REST API:
http://domain.com/rest/api/2/search?jql=reporter='ram'&created='2013/10/22'
Thanks in advance!
Both with and without encoding, its not working.
http://domain.com/rest/api/2/search?jql=reporter=ram and created >= "2015/02/09" and created <= 2015/02/11"
So when I searched the issues, I got to see the created time stamp format i.e., "2015-02-09T11:44:22.000+0530".
Is this the issue with different time stamps, it got stored and retrieved?
Did you ever figure out this issue. I am having the same issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try
http://domain.com/rest/api/2/search?jql=reporter=ram and created >= "2013/01/01" and created <= "2013/03/15"
If that doesn't work, URL encode the parameters.
http://domain.com/rest/api/2/search?jql=reporter%20%3D%20ram%20and%20created%20%3E%3D%20%222013/01/01%22%20and%20created%20%3C%3D%20%222013/03/15%22
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, works perfect
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Encoding works Thanks a lot ..
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.