update-event-attendees
Modify event attendee lists in Microsoft Outlook by adding or removing participants using their email addresses and names.
Instructions
Add or remove attendees from a calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
addAttendees | No | List of attendees to add to the event | |
eventId | Yes | ID of the event to update | |
removeAttendees | No | List of email addresses to remove from the event |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"addAttendees": {
"description": "List of attendees to add to the event",
"items": {
"additionalProperties": false,
"properties": {
"email": {
"description": "Email address of the attendee to add",
"type": "string"
},
"name": {
"description": "Name of the attendee",
"type": "string"
},
"type": {
"description": "Type of attendee: required or optional",
"enum": [
"required",
"optional"
],
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
},
"type": "array"
},
"eventId": {
"description": "ID of the event to update",
"type": "string"
},
"removeAttendees": {
"description": "List of email addresses to remove from the event",
"items": {
"description": "Email addresses of attendees to remove from the event",
"type": "string"
},
"type": "array"
}
},
"required": [
"eventId"
],
"type": "object"
}