API Reference/Calendars

Get Calendar

Retrieves detailed information about a specific calendar integration by its UUID. Returns comprehensive calendar data including the calendar name, email address, provider details (Google, Microsoft), sync status, and other metadata. This endpoint is useful for displaying calendar information to users or verifying the status of a calendar integration before performing operations on its events.

GET
/calendars/{uuid}

Authorization

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

API key for authentication

In: header

Path Parameters

uuidRequiredstring

The UUID identifier

curl -X GET "https://api.meetingbaas.com/calendars/string" \
  -H "x-meeting-baas-api-key: <token>"

{
  "email": "string",
  "google_id": "string",
  "name": "string",
  "resource_id": "string",
  "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}