update_calendar_event
Modify an existing Microsoft 365 calendar event by providing its ID and new values for fields like subject, start time, end time, location, or reminders. Only specified fields are updated.
Instructions
更新现有的日历事件 (UTC+8)。仅更新提供的字段。
参数: event_id (str): 待更新事件的唯一 ID。 subject (str, 可选): 新标题。 start (str, 可选): 新开始时间 (ISO 8601)。必须是本地时间。 end (str, 可选): 新结束时间 (ISO 8601)。必须是本地时间。 body (str, 可选): 新内容描述。 body_type (str, 可选): 'Text' 或 'HTML'。 location (str, 可选): 新地点。 is_all_day (bool, 可选): 是否更新为全天事件。 importance (str, 可选): 重要程度:'low', 'normal', 'high'。 categories (List[str], 可选): 新的分类列表。 is_reminder_on (bool, 可选): 是否开启提醒。 reminder_minutes (int, 可选): 提醒提前分钟数。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | ||
| body | No | ||
| start | No | ||
| subject | No | ||
| event_id | Yes | ||
| location | No | ||
| body_type | No | HTML | |
| categories | No | ||
| importance | No | ||
| is_all_day | No | ||
| is_reminder_on | No | ||
| reminder_minutes | No |