> ## 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

# 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

<ParamField path="calendar_id" type="string" required>Calendar UUID.</ParamField>
<ParamField path="event_id" type="string" required>Event UUID.</ParamField>

## Request headers

<ParamField header="Authorization" type="string" required>
  Bearer token. Format: `Bearer talq_your_environment_token_here`
</ParamField>

## Examples

<RequestExample>
  ```bash theme={null}
  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"
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "event_id": "event-uuid-1",
      "meeting_url": "https://meet.example.com/abc-123",
      "meeting_id": "meeting-id-abc"
    }
  }
  ```
</ResponseExample>

## Error responses

### 422 — No Provider Connection

<ResponseExample>
  ```json theme={null}
  {
    "success": false,
    "message": "Calendar has no connected provider that supports meeting links",
    "code": "MEETING_PROVIDER_REQUIRED"
  }
  ```
</ResponseExample>
