iCalendlyDeveloper Docs
Conferencing

GETList Your Conferencing Applications

Fetch a list of all conferencing integrations connected to the authenticated user's account along with their connection validity status.

GET/v2/conferencing
GET/v2/conferencing

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/conferencing" \
  -H "Authorization: <string>"

{
  "status": "success",
  "data": [
    {
      "id": 0,
      "type": "google_video",
      "userId": 0,
      "invalid": true
    }
  ]
}