API Reference/Calendars

List Raw Calendars

Retrieves unprocessed calendar data directly from the provider (Google, Microsoft) using provided OAuth credentials. This endpoint is typically used during the initial setup process to allow users to select which calendars to integrate. Returns a list of available calendars with their unique IDs, email addresses, and primary status. This data is not persisted until a calendar is formally created using the create_calendar endpoint.

POST
/calendars/raw

Authorization

x-meeting-baas-api-key<token>

API key for authentication

In: header

Request Body

application/jsonRequired
oauth_client_idRequiredstring
oauth_client_secretRequiredstring
oauth_refresh_tokenRequiredstring
platformRequiredstring

Fields with value "simple" parse as Kind::Simple. Fields with value "fancy" parse as Kind::SoFancy.

Value in: "Google" | "Microsoft"
curl -X POST "https://api.meetingbaas.com/calendars/raw" \
  -H "x-meeting-baas-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "oauth_client_id": "string",
    "oauth_client_secret": "string",
    "oauth_refresh_token": "string",
    "platform": "Google"
  }'

{
  "calendars": [
    {
      "email": "string",
      "id": "string",
      "is_primary": true
    }
  ]
}