curl --request PATCH \
--url https://api.example.com/api/v1/calendar/events/{event_id} \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"start_at": "<string>",
"end_at": "<string>",
"description": "<string>",
"location": "<string>"
}
'