delete-event
Remove a calendar event by providing its event ID using the Microsoft Graph API. Manage Outlook calendar events efficiently across multiple accounts.
Instructions
Deletes a calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
eventId | Yes | The ID of the event to delete |
Input Schema (JSON Schema)
{
"properties": {
"eventId": {
"description": "The ID of the event to delete",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}