Tool details
Playground
Input schema
input-schema.json
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Find meeting time suggestions from attendees and constraints
| Field | Value |
|---|---|
| Name | outlook__find_meeting_times |
| Group | Integrations |
{
"type": "object",
"properties": {
"attendees": {
"type": "array",
"description": "Attendee array"
},
"timeConstraint": {
"type": "object",
"description": "Meeting time constraint object"
},
"meetingDuration": {
"type": "string",
"description": "ISO 8601 meeting duration, for example PT1H"
},
"maxCandidates": {
"type": "number",
"description": "Maximum meeting suggestions to return"
},
"isOrganizerOptional": {
"type": "boolean",
"description": "Whether organizer attendance is optional"
},
"returnSuggestionReasons": {
"type": "boolean",
"description": "Return suggestion reason text"
},
"minimumAttendeePercentage": {
"type": "number",
"description": "Minimum attendee availability percentage"
}
},
"required": [
"attendees",
"timeConstraint"
],
"description": "Input schema for the outlook__find_meeting_times tool."
}