create_event
Create a calendar event with title, date, participants, location, and optional description using markdown. Control all-day, visibility, and end time.
Instructions
Create a new calendar event. Description supports markdown formatting. Returns the created event ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Start date/time (timestamp) | |
| title | Yes | a string that will be trimmed | |
| allDay | No | All-day event (default: false) | |
| dueDate | No | End date/time (timestamp). If not provided, defaults to date + 1 hour | |
| location | No | Event location | |
| visibility | No | Event visibility (public, freeBusy, private) | |
| description | No | Event description (markdown supported) | |
| participants | No | Participant emails |