Search found 4 matches

by thjomha
Mon Jan 15, 2024 10:25 am
Forum: API
Topic: Retrieve deleted Appointments for syncing
Replies: 1
Views: 1207

Retrieve deleted Appointments for syncing

I am writing a module that synchronises my local database with a list of appointments and schedules. I will use DataTStamp to only update/add appointments that have changed since the last sync. The problem is that deleted appointments are just removed instead of changing to status 'deleted'...so I a...
by thjomha
Fri Jan 05, 2024 6:57 pm
Forum: API
Topic: Appointment Slots (proposal for API)
Replies: 9
Views: 3532

Re: Appointment Slots (proposal for API)

Are you syncing a local database with API results? If so, how often do you update? My original program accesses the database in real-time, but now I am switching everything to use the APIs...which are slower. Our online booking is kept simple, we just have providers associated with Operatories and b...
by thjomha
Thu Dec 28, 2023 6:58 am
Forum: API
Topic: Appointment Slots (proposal for API)
Replies: 9
Views: 3532

Re: Appointment Slots (proposal for API)

Thank you. I was using ScheduleOp, Schedule, and Appointment to generate my list of available time slots...You are correct in that I can generate the same end result with only the Schedule and Appointment API calls. I use those 2 calls to generate an array with 138 values of 1 or 0 to represent time...
by thjomha
Tue Dec 26, 2023 9:36 pm
Forum: API
Topic: Appointment Slots (proposal for API)
Replies: 9
Views: 3532

Appointment Slots (proposal for API)

I am rewriting my online booking system from the ground up. The current version reads data from appointment and schedule and scheduleOp to build a day and then block out slots that have appointments or blockouts. For security I am switching everything to use the open dental API....I am not sure if i...