I am trying to fetch all issues which have newly worklog added. some how my api is working if only send date with jql query but if i provide time as well it is not working and bad request error occurred.
Working:
api/3/search?jql=worklogDate >= '2023-12-22' AND worklogDate <= '2023-12-25' AND project = PROD
Not working:
api/3/search?jql=worklogDate >= '2023-12-22 10:23:12' AND worklogDate <= '2023-12-25 05:38:12' AND project = PROD
Hello @Harsha Khapre
You would have gotten an error message back such as:
"Date value '2023-12-22 10:23:12' for field 'worklogDate' is invalid. Valid formats include: 'YYYY/MM/DD', 'YYYY-MM-DD', or a period format e.g. '-5d', '4w 2d'."
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
format : yyyy-MM-dd HH:MM:SS
timezone: est
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.