Tool details
| Field | Value |
|---|---|
| Name | outlook__create_event |
| Group | Integrations |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"subject": {
"type": "string",
"description": "Event subject"
},
"body": {
"type": "object",
"description": "Microsoft Graph itemBody object, for example { contentType, content }"
},
"start": {
"type": "object",
"description": "Start date/time object with dateTime and timeZone"
},
"end": {
"type": "object",
"description": "End date/time object with dateTime and timeZone"
},
"attendees": {
"type": "array",
"description": "Attendee array"
},
"location": {
"type": "object",
"description": "Primary event location"
},
"locations": {
"type": "array",
"description": "Additional event locations"
},
"categories": {
"type": "array",
"description": "Outlook category names"
},
"importance": {
"type": "string",
"description": "Event importance: low, normal, or high"
},
"showAs": {
"type": "string",
"description": "Free/busy status such as free, busy, tentative, or oof"
},
"isOnlineMeeting": {
"type": "boolean",
"description": "Whether to create an online meeting"
},
"onlineMeetingProvider": {
"type": "string",
"description": "Online meeting provider such as teamsForBusiness"
},
"recurrence": {
"type": "object",
"description": "Microsoft Graph patternedRecurrence object"
}
},
"required": [
"subject",
"start",
"end"
],
"description": "Input schema for the outlook__create_event tool."
}