How to sync meetings incrementally

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"

  1. First run — export all meetings without a timestamp filter (full export)

  2. Store the highest Last Modified Unix timestamp from the response

  3. Next run — pass that stored value as last_modified_from

  4. Repeat on every sync cycle


Notes

  • Last Modified changes when a meeting's status changes (e.g. confirmed → canceled)

  • Combine last_modified_from with last_modified_to to bound a specific window