update_event
Modify Google Calendar event details using an event ID. Update summary, start/end times, description, location, or attendees by passing specific values, ensuring only the provided fields are changed.
Instructions
일정 ID로 일정 정보 수정 (전달된 값만 반영)
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": {
"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"
}