1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-10 11:10:31 +02:00
OpenIntegrations/docs/en/md/Slack/Channel-management/Leave-channel.md
2024-06-05 13:35:05 +03:00

752 B

sidebar_position
10

Leave channel

Removes the current bot from the channel

Function LeaveChannel(Val Token, Val Channel) Export

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

Returns: Key-Value Pair - 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
 }