Skip to main content
DELETE
/
api
/
v1
/
calendars
/
{calendar_id}
/
providers
/
{provider_id}
curl -X DELETE "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/providers/conn-uuid-1" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "message": "Provider connection removed"
}

Documentation Index

Fetch the complete documentation index at: https://docs.talkover.ai/llms.txt

Use this file to discover all available pages before exploring further.

Disconnect Provider

Remove a calendar’s connection to an external provider. Existing events that were synced from the provider are preserved but stop receiving updates.

Endpoint

DELETE /api/v1/calendars/{calendar_id}/providers/{provider_id}

Path Parameters

calendar_id
string
required
Calendar UUID.
provider_id
string
required
Provider connection UUID.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

curl -X DELETE "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/providers/conn-uuid-1" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "message": "Provider connection removed"
}