Hi, is there a way to filter issue by finished_date via API for eg
/api/v1/issues?project=xx&finished_date=2023-08-22 or even in date range
maybe pass the payload via formData instead of query string param ?
Thankss a lot.
hi @kelvintyh welcome to our community.
Indeed there is a filter you can use, even ranges. You have to use:
f"finished_date__{operator}={datetime}"
Where operator may be: lt, gt, lte, gte. For example:
finished_date__gt=2023-08-23T07:57:17.335Z
Cheers!
Thanksssss a lot !!!