IntegrationsSlackActions
List Slack user group members
List user ids in a Slack user group.
usergroups.users.list · Slack · v1
Details
Scopes
usergroups:read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
usergroup_id | string | Yes | minLength 1; maxLength 64 |
include_disabled | boolean | No | — |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
users | array<string> | Yes | — |
users[] | string | Yes | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"usergroup_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"include_disabled": {
"type": "boolean"
}
},
"required": [
"usergroup_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"users": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"users"
]
}