v1

latestOpenAPI 3.0.02026-07-17121287546.7 KB
Cal Unified Calendars

List calendar connections

Returns all calendar connections for the authenticated user (Google, Office 365, Apple). Use connectionId in connection-scoped endpoints. Note: Event CRUD (list/create/get/update/delete events) is currently only supported for Google Calendar connections; other types will return 400.

get/v2/calendars/connections

Headers

Authorizationstring required

value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token

Response

status'success' | 'error' required

Example response

{
  "status": "success",
  "data": {
    "connections": [
      {
        "connectionId": "123",
        "type": "google",
        "email": "user@gmail.com"
      }
    ]
  }
}