get-event
Retrieve detailed calendar event information using a specific event ID, enabling efficient management and tracking of Outlook meetings.
Instructions
Get details of a calendar event by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
eventId | Yes | ID of the event to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"eventId": {
"description": "ID of the event to retrieve",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}