Skip to main content

Leave channel

Removes the current bot from the channel

Function LeaveChannel(Val Token, Val Channel) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
Channel--channelStringChannel ID
Returns

Map Of KeyAndValue - serialized JSON response from Slack

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

Result = OPI_Slack.LeaveChannel(Token, Channel);
oint slack LeaveChannel \
--token "***" \
--channel "C0B1N1UUKL1"
Result
{
"ok": true
}