Get channel user list
Gets a list of users in the specified channel
Function GetChannelUserList(Val Token, Val Channel, Val Cursor = "") Export
| Parameter | CLI option | Type | Required | Description | 
|---|---|---|---|---|
| Token | --token | String | ✔ | Bot token | 
| Channel | --channel | String | ✔ | Channel ID | 
| Cursor | --cursor | String | ✖ | Pointer 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 = "C09M6UV9KT2";
    Result = OPI_Slack.GetChannelUserList(Token, Channel);
- Bash
- CMD/Bat
    oint slack GetChannelUserList \
     --token "***" \
     --channel "C09LEMNRUD9"
    oint slack GetChannelUserList ^
     --token "***" ^
     --channel "C09LEMNRUD9"
Result
{
 "ok": true,
 "members": [
  "U06UG1CAYH2"
 ],
 "response_metadata": {
  "next_cursor": ""
 }
}