scheduleop schema

This forum is for programmers who have questions about the source code.
Post Reply
Lavanya
Posts: 2
Joined: Tue Jun 23, 2026 4:53 am

scheduleop schema

Post by Lavanya »

Currently in scheduleop schema there is no datatimestamp,so how can we track while syncing the updations and deletions of that particular schema entries?
SLeon
Posts: 611
Joined: Mon Mar 01, 2021 10:00 am

Re: scheduleop schema

Post by SLeon »

I don't see a reason why an application would need a 1:1 instantaneous, in sync cache of scheduleop data. Most developers query for relevant data at the time of display/use.
Lavanya
Posts: 2
Joined: Tue Jun 23, 2026 4:53 am

Re: scheduleop schema

Post by Lavanya »

Hi,
We are currently building a sync from onpremise to local system inorder to reduce api latency issues ,so we need real time syncing from scheduleop schema ,it doesnt have timestamp,so is there any other ways to know the updations and insertions.
SLeon
Posts: 611
Joined: Mon Mar 01, 2021 10:00 am

Re: scheduleop schema

Post by SLeon »

If you are creating a local application, the Local or Services modes of the API are recommended. These return larger JSON payloads than the Remote mode and, because it never leaves your network, execute in just a few milliseconds. If this is how your office and application are already set up and you're experiencing latency, that likely points to high database traffic, over server load, etc. instead.

Most applications will only query for scheduleops relevant for their use case, as it is a linker table. I recommend API Guide - Finding Appointment Openings if it pertains to your use case or otherwise posting in the API forum, if that is your type of integration.
Post Reply