create-event
Add new calendar events in Microsoft Outlook with defined subject, start and end times, attendees, and optional event details using the Microsoft Graph API.
Instructions
Creates a new calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attendees | No | List of attendee email addresses | |
body | No | Optional body content for the event | |
end | Yes | The end time of the event in ISO 8601 format | |
start | Yes | The start time of the event in ISO 8601 format | |
subject | Yes | The subject of the event |
Input Schema (JSON Schema)
{
"properties": {
"attendees": {
"description": "List of attendee email addresses",
"items": {
"type": "string"
},
"type": "array"
},
"body": {
"description": "Optional body content for the event",
"type": "string"
},
"end": {
"description": "The end time of the event in ISO 8601 format",
"type": "string"
},
"start": {
"description": "The start time of the event in ISO 8601 format",
"type": "string"
},
"subject": {
"description": "The subject of the event",
"type": "string"
}
},
"required": [
"subject",
"start",
"end"
],
"type": "object"
}