lookup_user_by_email
Find Slack users by email address to identify team members, retrieve user profiles, or verify user existence within a workspace.
Instructions
Lookup a user by their email address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | The email address of the user |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "The email address of the user",
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
}