find-person
Locate email addresses by entering a person's name to streamline adding attendees in Microsoft Outlook meeting scheduling using the Microsoft Graph API.
Instructions
Find a person's email address by their name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name or partial name of the person to find |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name or partial name of the person to find",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}