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.
List recent Outlook conversation threads for request-desk triage. Returns one representative message per conversationId; pass that value as thread_id to get_thread.
| Field | Value |
|---|---|
| Name | outlook__list_threads |
| Group | Integrations |
{
"type": "object",
"properties": {
"folderId": {
"type": "string",
"description": "Mail folder ID or well-known folder name"
},
"$top": {
"type": "number",
"description": "Maximum recent messages to inspect as thread representatives"
},
"$select": {
"type": "string",
"description": "Comma-separated message fields to return"
},
"$orderby": {
"type": "string",
"description": "Sort expression"
},
"$filter": {
"type": "string",
"description": "Optional OData filter expression, e.g. isRead eq false"
}
},
"required": [
"folderId"
],
"description": "Input schema for the outlook__list_threads tool."
}