How to sync meetings incrementally
Use this guide when you need to retrieve only meetings that have changed since your last sync.
Request
Bash
curl -X GET "https://your-event-domain.com/api/v2/meetings/export?event_id=7&last_modified_from=1700000000" \
-H "Authorization: Bearer your_api_key_here"
Recommended sync pattern
-
First run — export all meetings without a timestamp filter (full export)
-
Store the highest
Last ModifiedUnix timestamp from the response -
Next run — pass that stored value as
last_modified_from -
Repeat on every sync cycle
Notes
-
Last Modifiedchanges when a meeting's status changes (e.g. confirmed → canceled) -
Combine
last_modified_fromwithlast_modified_toto bound a specific window