1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Slack/Channel-management/Leave-channel.md

44 lines
751 B
Markdown
Raw Normal View History

---
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: Map Of KeyAndValue - Serialized JSON response from Slack
```bsl title="Code example"
Channel = "C070VPMKN8J";
Response = OPI_Slack.LeaveChannel(Token, Channel); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
```
```sh title="CLI command example"
oint slack LeaveChannel --token %token% --channel "C070VPMKN8J"
```
```json title="Result"
{
"ok": true
}
```