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
Bearer token. Format: Bearer talq_your_environment_token_here
Must be application/json.
Request Body
End time. ISO 8601. Must be after start_at.
Options: confirmed, tentative, cancelled. Default: confirmed.
Free-form event type tag (e.g., meeting, block, appointment).
UUID of the creating user.
UUID of the owner (user or agent).
Owner type. Options: user, agent.
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"
}
}