Skip to main content
POST
/
api
/
v1
/
calendars
/
{calendar_id}
/
providers
/
{provider_id}
/
sync
curl -X POST "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/providers/conn-uuid-1/sync" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": {
    "queued": true,
    "queued_at": "2024-01-15T19:30:00Z"
  }
}

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.

Trigger Provider Sync

Trigger a sync against a specific provider connection. Useful when you want to refresh a single provider without syncing all calendars (which is what Trigger Calendars Sync does).

Endpoint

POST /api/v1/calendars/{calendar_id}/providers/{provider_id}/sync

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 POST "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/providers/conn-uuid-1/sync" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "data": {
    "queued": true,
    "queued_at": "2024-01-15T19:30:00Z"
  }
}