Hi
I'm using the below to retrieve chats however I'm getting data in 2018 when i'm specifying 1609462861 which is 2021. What am I doing wrong?
https://www.zopim.com/api/v2/incremental/chats?fields=chats(id,chat_id,started_by,agent_id,assigned,accepted,rating,comment,timestamp,duration)?start_time=1609462861 -v -H "Authorization: Bearer xxxxxxxxxxxxxxxxxxxxx
Regards
Brian




Jean-Charles - Zendesk Support



Hi Brian,
when entering a second parameter, you have yo use a & to indicate that a second parameter is in the URL, not a "?".
Your start_time is therefore currently being ignored.
Could you try with:
https://www.zopim.com/api/v2/incremental/chats?fields=chats(id,chat_id,started_by,agent_id,assigned,accepted,rating,comment,timestamp,duration)&start_time=1609462861
Please let me know if that helped.