delete_event
Remove or cancel a calendar event in Microsoft Outlook by specifying the account and event IDs. Optionally send cancellations to attendees for efficient event management.
Instructions
Delete or cancel a calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
event_id | Yes | ||
send_cancellation | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"event_id": {
"title": "Event Id",
"type": "string"
},
"send_cancellation": {
"default": true,
"title": "Send Cancellation",
"type": "boolean"
}
},
"required": [
"account_id",
"event_id"
],
"type": "object"
}