cURL
curl --request GET \ --url https://api.example.com/api/v1/calendar/events/{event_id}
{ "id": 123, "uuid": "<string>", "title": "<string>", "description": "<string>", "event_type": "<string>", "event_type_display": "<string>", "status": "<string>", "status_display": "<string>", "start_time": "<string>", "end_time": "<string>", "duration_minutes": 123, "location": "<string>", "has_video_conference": true, "video_conference_url": "<string>", "video_conference_provider": "<string>", "created_by_ai_agent": true, "is_reminder_enabled": true, "remind_before_minutes": 123, "created_at": "<string>", "updated_at": "<string>", "customer": { "name": "<string>", "email": "<string>", "phone": "<string>", "notes": "<string>" }, "ai_agent": { "id": 123, "name": "<string>", "assistant_id": "<string>" }, "team": { "id": 123, "name": "<string>" }, "external_calendars": { "google": "<string>", "outlook": "<string>", "gohighlevel": "<string>" }, "ics_url": "<string>", "error": "<string>", "message": "<string>" }
Retrieve detailed information about a specific calendar event
meeting
appointment
busy
voice_call
video_call
scheduled
confirmed
cancelled
completed
no_show
Show Customer Details
Show AI Agent Details
Show Team Details
Show External Calendar Details
curl -X GET 'https://api.klen.ai/api/v1/calendar/events/123' \ -H 'Authorization: Bearer klen_YOUR_API_KEY'
curl -X GET 'https://api.klen.ai/api/v1/calendar/events/f47ac10b-58cc-4372-a567-0e02b2c3d479' \ -H 'Authorization: Bearer klen_YOUR_API_KEY'
{ "id": 123, "uuid": "f47ac10b-58cc-4372-a567-0e02b2c3d479", "title": "Client Meeting", "description": "Discuss project requirements and timeline", "event_type": "meeting", "event_type_display": "Meeting", "status": "confirmed", "status_display": "Confirmed", "start_time": "2025-05-01T14:00:00.000Z", "end_time": "2025-05-01T15:00:00.000Z", "duration_minutes": 60, "location": "Conference Room A", "has_video_conference": true, "video_conference_url": "https://meet.google.com/abc-defg-hij", "video_conference_provider": "Google Meet", "created_by_ai_agent": true, "is_reminder_enabled": true, "remind_before_minutes": 30, "created_at": "2025-04-25T10:15:30.000Z", "updated_at": "2025-04-25T10:15:30.000Z", "customer": { "name": "John Smith", "email": "john.smith@example.com", "phone": "+15551234567", "notes": "Prefers afternoon meetings" }, "ai_agent": { "id": 42, "name": "Meeting Scheduler", "assistant_id": "asst_01234567890" }, "team": { "id": 5, "name": "Sales Team" }, "external_calendars": { "google": "google_event_id_123", "outlook": "outlook_event_id_456" }, "ics_url": "/calendar/event/f47ac10b-58cc-4372-a567-0e02b2c3d479/calendar.ics" }
{ "error": "not_found", "message": "Event not found or you do not have access" }
{ "error": "authentication_required", "message": "API key is required" }
{ "error": "permission_denied", "message": "This API key does not have can_read_calendar permission" }
{ "error": "server_error", "message": "An unexpected server error occurred" }