Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Lookup Microsoft Teams user by email

Find a user by email address.

Agent markdown

users.lookup_by_email · Microsoft Teams · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • User.ReadBasic.All

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
emailstringYesminLength 3; maxLength 320

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
display_namestringYes
emailstringNo
user_principal_namestringNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "email": {
      "type": "string",
      "minLength": 3,
      "maxLength": 320
    }
  },
  "required": [
    "email"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "display_name": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "user_principal_name": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "display_name"
  ]
}