Leave channel
Removes the current bot from the channel
Function LeaveChannel(Val Token, Val Channel) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Token | --token | String | ✔ | Bot token |
Channel | --channel | String | ✔ | Channel ID |
Returns: Map Of KeyAndValue - serialized JSON response from Slack
1C:Enterprise/OneScript code example
Token = "xoxb-6965308400114-696804637...";
Channel = "C08214W5WN6";
Result = OPI_Slack.LeaveChannel(Token, Channel);
- Bash
- CMD/Bat
oint slack LeaveChannel \
--token "***" \
--channel "C081VDNAU30"
oint slack LeaveChannel ^
--token "***" ^
--channel "C081VDNAU30"
Result
{
"ok": true
}