curl --request POST \
--url https://api.example.com/api/v1/calendar/events \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"start_at": "<string>",
"end_at": "<string>",
"all_day": true,
"description": "<string>",
"location": "<string>",
"attendees": [
{}
],
"recurrence": {}
}
'