1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-07 15:20:39 +02:00
2024-08-13 15:52:26 +03:00

775 B

sidebar_position
10

Leave channel

Removes the current bot from the channel

Function LeaveChannel(Val Token, Val Channel) Export

Parameter CLI option Type Description
Token --token String Bot token
Channel --channel String Channel ID

Returns: Map Of KeyAndValue - Serialized JSON response from Slack


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

{
  "ok": true
  }