Skip to main content
POST
/
api
/
v1
/
calendars
/
{calendar_id}
/
events
/
{event_id}
/
meeting
curl -X POST "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/events/event-uuid-1/meeting" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": {
    "event_id": "event-uuid-1",
    "meeting_url": "https://meet.example.com/abc-123",
    "meeting_id": "meeting-id-abc"
  }
}

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.

Create Event Meeting Link

Generate a video meeting link for an event. The link is created via the calendar’s connected provider integration and attached to the event as meeting_url.

Endpoint

POST /api/v1/calendars/{calendar_id}/events/{event_id}/meeting

Path Parameters

calendar_id
string
required
Calendar UUID.
event_id
string
required
Event 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/events/event-uuid-1/meeting" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "data": {
    "event_id": "event-uuid-1",
    "meeting_url": "https://meet.example.com/abc-123",
    "meeting_id": "meeting-id-abc"
  }
}

Error Responses

422 — No Provider Connection

{
  "success": false,
  "message": "Calendar has no connected provider that supports meeting links",
  "code": "MEETING_PROVIDER_REQUIRED"
}