Skip to main content

Get channel user list

Gets a list of users in the specified channel

Function GetChannelUserList(Val Token, Val Channel, Val Cursor = "") Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
Channel--channelStringChannel ID
Cursor--cursorStringPointer from the previous request, if the result rows > 100

Returns: Map Of KeyAndValue - serialized JSON response from Slack


1C:Enterprise/OneScript code example
    Token   = "xoxb-6965308400114-696804637...";
Channel = "C07SY62EY12";

Result = OPI_Slack.GetChannelUserList(Token, Channel);
    oint slack GetChannelUserList \
--token "***" \
--channel "C07UZU8ASMN"
Result
{
"ok": true,
"members": [
"U06UG1CAYH2"
],
"response_metadata": {
"next_cursor": ""
}
}