POST
/
api
/
v1
/
calcom
/
disconnect
curl -X POST https://api.ravan.ai/api/v1/calcom/disconnect \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "org_id": "1268c1f0-19f3-47db-aefb-c16a7c3ace6e",
    "provider_id": "019d4a3b-6c7d-8e9f-0a1b-2c3d4e5f6a7b"
  }'
{
  "success": true,
  "message": "Cal.com disconnected successfully",
  "data": {}
}
This will disconnect the specified Cal.com connection. Agents using this connection will no longer be able to book appointments through Cal.com.

Authorizations

X-Api-Key
string
required
Your Agni API key. Find it in your support@ravan.ai under Settings → API Keys.

Body

org_id
string
required
UUID of your organization.
provider_id
string
required
UUID of the Cal.com provider connection to disconnect. Retrieve this from the Connect response or Status endpoint.

Response

success
boolean
Whether the request succeeded.
message
string
Human-readable status message.
data
object
Empty object on success.
curl -X POST https://api.ravan.ai/api/v1/calcom/disconnect \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "org_id": "1268c1f0-19f3-47db-aefb-c16a7c3ace6e",
    "provider_id": "019d4a3b-6c7d-8e9f-0a1b-2c3d4e5f6a7b"
  }'
{
  "success": true,
  "message": "Cal.com disconnected successfully",
  "data": {}
}

Authorizations

X-Api-Key
string
header
required

Body

application/json
org_id
string
required
provider_id
string
required

Response

Successful response

success
boolean
message
string
data
object