Skip to main content
FuseFuse
IntegrationsSlackActions

Lookup Slack user by email

Find a Slack user by email address.

Agent markdown

users.lookup_by_email · Slack · v1

Details

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

Scopes

  • users:read
  • users:read.email

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
emailstringYesminLength 1

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
namestringYes
real_namestringNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "email": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "email"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "real_name": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "name"
  ]
}