Skip to main content
POST
/
api
/
v1
/
calendars
/
sync
curl -X POST "https://app.talkover.ai/api/v1/calendars/sync" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": {
    "syncing": ["calendar-uuid-1", "calendar-uuid-2"],
    "up_to_date": ["calendar-uuid-3"]
  }
}

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 Calendars Sync

Trigger a sync of events from connected calendar provider integrations. Runs asynchronously — poll Get Sync Status for progress.

Endpoint

POST /api/v1/calendars/sync

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/sync" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "data": {
    "syncing": ["calendar-uuid-1", "calendar-uuid-2"],
    "up_to_date": ["calendar-uuid-3"]
  }
}