IntegrationsSlackActions
Get Slack user
Get one Slack user by id.
users.get · Slack · v1
Details
Scopes
users:read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_id | string | Yes | minLength 1; maxLength 64 |
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": {
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"user_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"real_name": {
"type": "string"
}
},
"required": [
"id",
"name"
]
}