Skip to main content
POST
/
api
/
v1
/
calendars
/
{calendar_id}
/
events
curl -X POST "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/events" \
  -H "Authorization: Bearer talq_your_environment_token_here" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Demo with Acme",
    "start_at": "2024-01-20T15:00:00Z",
    "end_at": "2024-01-20T15:30:00Z",
    "type": "meeting",
    "attendees": [{"name":"Jane Doe","email":"[email protected]"}]
  }'
{
  "success": true,
  "data": {
    "id": "event-uuid-1",
    "calendar_id": "calendar-uuid-1",
    "title": "Demo with Acme",
    "start_at": "2024-01-20T15:00:00Z",
    "end_at": "2024-01-20T15:30:00Z",
    "status": "confirmed",
    "type": "meeting"
  }
}

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 Calendar Event

Create a new event on a calendar.

Endpoint

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

Path Parameters

calendar_id
string
required
Calendar UUID.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here
Content-Type
string
required
Must be application/json.

Request Body

title
string
required
Event title.
description
string
Optional description.
start_at
string
required
Start time. ISO 8601.
end_at
string
required
End time. ISO 8601. Must be after start_at.
status
string
Options: confirmed, tentative, cancelled. Default: confirmed.
type
string
Free-form event type tag (e.g., meeting, block, appointment).
created_by
string
UUID of the creating user.
owner_id
string
UUID of the owner (user or agent).
owner_type
string
Owner type. Options: user, agent.
attendees
array
Array of { name, email } objects.

Examples

curl -X POST "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/events" \
  -H "Authorization: Bearer talq_your_environment_token_here" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Demo with Acme",
    "start_at": "2024-01-20T15:00:00Z",
    "end_at": "2024-01-20T15:30:00Z",
    "type": "meeting",
    "attendees": [{"name":"Jane Doe","email":"[email protected]"}]
  }'

Response

{
  "success": true,
  "data": {
    "id": "event-uuid-1",
    "calendar_id": "calendar-uuid-1",
    "title": "Demo with Acme",
    "start_at": "2024-01-20T15:00:00Z",
    "end_at": "2024-01-20T15:30:00Z",
    "status": "confirmed",
    "type": "meeting"
  }
}