update_event
Modify calendar event details such as summary, start time, end time, location, description, or attendees using the event ID.
Instructions
Update an existing calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attendees | No | ||
description | No | ||
end | No | ||
event_id | Yes | ||
location | No | ||
start | No | ||
summary | No |
Input Schema (JSON Schema)
{
"properties": {
"attendees": {
"anyOf": [
{
"items": {
"format": "email",
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Attendees"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"end": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End"
},
"event_id": {
"title": "Event Id",
"type": "string"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Location"
},
"start": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start"
},
"summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Summary"
}
},
"required": [
"event_id"
],
"title": "update_eventArguments",
"type": "object"
}