Hi, could somebody help me with this issue?
I'm trying to download the tickets using incremental API with this URL:
https://cinemarksupport.zendesk.com/api/v2/incremental/tickets.json?start_time=1659312000
This UNIX time is equal to 01 Aug 2022, but the API returns many tickes updated before this date (image below). I have tried with other cutoff dates, but the problem doesn't get solved.

Why does it happen and how can I fix it?
Thanks in advance.
Thanks for posting your question in the Community! So the start_time isn't the same as the created_at or updated_at value. When we're querying via a given start_time what we're actually looking for is the generated_timestamp value. That is because the updated_at value is only generated by ticket events whereas the generated_timestamp value is recorded for all updates (system or ticket related). That's why it's entirely possible to have a ticket with an earlier updated_at value than your start_time. The generated_timestamp for that ticket would be equal to or greater than the given start_time. Here is a link to our docs that shares a more detailed explanation of this.
Hope this helps!
Erica