unified_search
Search across Microsoft 365 resources like messages, events, files, and sites using a single API query. Specify entity types or search all available data for comprehensive results.
Instructions
Search across multiple Microsoft 365 resources using the modern search API
entity_types can include: 'message', 'event', 'drive', 'driveItem', 'list', 'listItem', 'site'
If not specified, searches across all available types.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
entity_types | No | ||
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"entity_types": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Entity Types"
},
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query",
"account_id"
],
"type": "object"
}