iCalendlyDeveloper Docs
Cal unified calendars

GETList calendar connections

Retrieves connected calendar apps.

GET/v2/calendars/connections

Header Parameters

AuthorizationRequiredstring

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

curl -X GET "https://example.com/v2/calendars/connections" \
  -H "Authorization: <string>"

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