Skip to main content

Leave channel

Removes the current bot from the channel

Function LeaveChannel(Val Token, Val Channel) Export

ParameterCLI optionTypeDescription
Token--tokenStringBot token
Channel--channelStringChannel ID

Returns: Map Of KeyAndValue - Serialized JSON response from Slack


Code example
  
Channel = "C070VPMKN8J";

Response = OPI_Slack.LeaveChannel(Token, Channel); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
CLI command example
    
oint slack LeaveChannel --token %token% --channel "C070VPMKN8J"

Result
{
"ok": true
}