https://"cloud instance"/rest/api/2/search?jql=project="project name"+AND+issuetype=bug+AND+created="2018/10/24%2002:25"+order+by+id&fields=key,created
In the above mentioned jql i have passed the date and time but i am still not able to get any results .
Queries
1. How to pass a date in this jql ?
Hello,
You query should look like this:
project%20%3D%20%22project%20name%22%20AND%20issuetype%3Dbug%20AND%20created%3D%222018%2F10%2F24%202%3A25%22%20order%20by%20id
Sorry i did not understand this clearly. Can you clarify this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It means that you have to take your JQL query like it looks in Jira and then encode it. Signs like spaces, <,> etc must be changed with the codes.
Each programming language has its own functions to encode strings.
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.