search_contacts
Retrieve and filter contacts from Microsoft Outlook using a specific query and account ID, bypassing limitations of unified search. Ideal for targeted contact management.
Instructions
Search contacts. Uses traditional search since unified_search doesn't support contacts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query",
"account_id"
],
"type": "object"
}