IntegrationsSlackActions
Lookup Slack user by email
Find a Slack user by email address.
users.lookup_by_email · Slack · v1
Details
Scopes
users:readusers:read.email
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
email | string | Yes | minLength 1 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
name | string | Yes | — |
real_name | string | No | — |
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"
]
}