Question

When is call sync needed ?

  • 25 June 2021
  • 1 reply
  • 189 views

As far as I got understanding after reading the documentation, call sync is needed at client side to update. So, say I am getting call logs from server by APIs - do I really need to sync the call logs before fetching the call logs ?

I want to ask same for fetching the messages as well. Do I need to sync the messages before fetching messages for an extension ?


1 reply

Userlevel 1

Sync API uses a sync token to keep track of what you have read and lets you read the next block without worry about missing something between. You can first use a full sync, then use the increment sync after that. Check out this article to learn more.

Reply