curl --request PUT \
--url https://api.example.com/api/v1/calendar/events/{event_id}/update \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"start_time": "<string>",
"end_time": "<string>",
"event_type": "<string>",
"status": "<string>",
"location": "<string>",
"customer_name": "<string>",
"customer_email": "<string>",
"customer_phone": "<string>",
"customer_notes": "<string>",
"has_video_conference": true,
"video_conference_url": "<string>",
"video_conference_provider": "<string>",
"is_reminder_enabled": true,
"remind_before_minutes": 123,
"ai_agent_id": 123,
"team_id": 123,
"sync_external_calendars": true,
"send_notifications": true
}
'