How to

Hello there !

I'm new using the JIRA API and i have the following situation.

The problem (1):
I am trying to filter between two dates but the response is showing results out of range.

The problem (2): I am trying to filter by "issues>fields>name" between two words, but as the problem 1, the response is showing results out of "range".

This is my query: 
https://accnetopt.atlassian.net/rest/api/2/search?jql=project=IC+order+by+duedate&fields=id,key,status,created&jql=created%20>=%202021-05-17%20AND%20created%20<=%202021-05-23&status.name=%20Listo%20&status.name=%En Analisis RM%20

This is my result: bug.png

Any help dudes?

 

1 answer

1 accepted

1 vote
Answer accepted
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 28, 2021

Hi @Alex Sebastián Oyazún Figueroa  -- Welcome to the Atlassian Community!

It appears you are concatenating multiple JQL statements in that call.  Why not just do the JQL all at once?  That may rule out any query result issues.

project = IC AND created >= "2021-05-17" AND created <= "2021-05-23" AND status = "En Analisis RM" ORDER BY duedate


Best regards,

Bill

Suggest an answer

Log in or Sign up to answer