The Zeeg API gives you full control over scheduled events in your workspace. You can list events with powerful filters, retrieve detailed event information, cancel events or individual invitees, and hand over Round Robin events to a different host.
Listing events
Retrieve a paginated list of scheduled events with GET /scheduled-events. Use query parameters to filter and sort the results.
Available filters
Example: filter by date range and status
To list events across your entire organization, add scope=all. This requires a token with the admin:full scope.
Getting event details
Retrieve full details for a single event with GET /scheduled-events/{uuid}. Event UUIDs follow the format zg-XXX (for example, zg-O69bac566950c6).
Example response
Cancelling events
Cancel a scheduled event with PUT /scheduled-events/{uuid}/cancel. You can optionally include a cancellationReason (maximum 512 characters) that will be shared with participants.
A successful cancellation returns a 200 response confirming the operation.
Attempting to cancel an event that is already cancelled will return a 400 Bad Request error. Check the event’s status field before making the request if you need to handle this case gracefully.
Cancelling individual invitees
For group events where you need to remove a single attendee without cancelling the entire event, use PUT /scheduled-invitees/{uuid}/cancel. The invitee UUID can be found in the event details response.
Handing over events
Transfer a Round Robin event to a different host with PUT /scheduled-events/{uuid}/handover. You can specify the new host explicitly or let the system auto-assign one based on the Round Robin rules.
Options
Handover limitations. The handover endpoint currently has the following constraints:
- Round Robin only — handover is only supported for events booked through a Round Robin scheduling page. Other event types will return an error.
- Calendar provider — the host must use a Microsoft calendar or have no calendar connected. Google Calendar is not yet supported for handovers.
- No Zoom or Webex locations — events with Zoom or Webex meeting locations cannot be handed over. The meeting link is tied to the original host and cannot be transferred automatically.
Adding notes to events
You can attach internal notes to scheduled events that are visible only to hosts and workspace members. Notes are useful for adding context before or after a meeting.
See the Notes API reference for the full list of endpoints.
Real-time updates
Instead of polling GET /scheduled-events to detect changes, set up webhook subscriptions to receive real-time notifications when events are created, cancelled, rescheduled, or handed over. This is more efficient and gives you near-instant updates.