update_calendar_event
Modify calendar event details including date, time, title, description, or location to keep your schedule current and accurate.
Instructions
Update/move a calendar event (change date, time, title, or description)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | No | ||
date | No | ||
description | No | ||
duration_minutes | No | ||
event_id | Yes | ||
location | No | ||
time | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"confirm": {
"default": false,
"title": "Confirm",
"type": "boolean"
},
"date": {
"default": "",
"title": "Date",
"type": "string"
},
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"duration_minutes": {
"default": 0,
"title": "Duration Minutes",
"type": "integer"
},
"event_id": {
"title": "Event Id",
"type": "string"
},
"location": {
"default": "",
"title": "Location",
"type": "string"
},
"time": {
"default": "",
"title": "Time",
"type": "string"
},
"title": {
"default": "",
"title": "Title",
"type": "string"
}
},
"required": [
"event_id"
],
"type": "object"
}