iCalendlyDeveloper Docs
Conferencing

GETGet Your Default Conferencing Application

Retrieve the details of the user's currently configured default conferencing application, including the application slug and its connection url.

GET/v2/conferencing/default
GET/v2/conferencing/default

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

{
  "status": "success",
  "data": {
    "appSlug": "string",
    "appLink": "string"
  }
}