MeetingBaasMeeting Baas
API Updates

Calendar API Update

New webhooks, events, and pagination updates

This update were introduced on the 12th of December 2024.

We're excited to announce several improvements to our Calendar API endpoints. These changes include new features and some breaking changes.

New Features

Webhook Configuration Flexibility

  • The webhook_url parameter is now optional on POST /calendar endpoint if a webhook URL is already configured on the account

Enhanced Event Information

Recurring Events Bot Management

Breaking Changes

Bot Management Response Format

Pagination Changes

  • GET /calendar_events endpoint no longer supports offset/limit pagination
  • Implemented cursor-based pagination
  • Response format changed to include a next field for fetching subsequent events
  • Events are returned in batches of 100
  • Example response structure:
    {
      "events": [...],
      "next": "cursor_token_for_next_page"
    }

Migration Guide

  1. Update your pagination implementation to use the new cursor-based system
  2. Modify your bot management logic to handle arrays of events instead of single events
  3. Review any webhook configuration logic to take advantage of the new optional webhook_url parameter

Implementation Timeline

These changes are now live in production.

On this page