How to extract particular day issues data from rest api using JQL?

jayaprakash.gadi July 29, 2016

I need issues which created and updated yesterday i.e 2016-07-28 00:00:00 to 2016-07-28 23:59:59.what is the date format or functions can i use.

1 answer

1 vote
Enrique Cadalso July 29, 2016

Hi,

Using date search functions you may not need to worry about date format.

https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-functions-reference-764478342.html

This works on my JIRA for created and updated yesterday.

 

created >= startOfDay(-1) AND created <= endOfDay(-1) AND updated>= startOfDay(-1) AND updated<= endOfDay(-1)

The -1 stands for yesterday.

 

This works too

created >= "2016-07-28" AND created < "2016-07-29" AND updated>= "2016-07-28" AND updated < "2016-07-29"

 

A link to the REST API

 

https://jira.atlassian.com/rest/api/2/search?jql=created>=startOfDay(-1) AND created<=endOfDay(-1) AND updated>=startOfDay(-1) AND updated<=endOfDay(-1)
 
https://jira.atlassian.com/rest/api/2/search?jql=created%3E=startOfDay(-1)%20AND%20created%3C=endOfDay(-1)%20AND%20updated%3E=startOfDay(-1)%20AND%20updated%3C=endOfDay(-1)

 

Regards,

 

Enrique.

Suggest an answer

Log in or Sign up to answer