1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-31 22:05:13 +02:00

46 lines
775 B
Markdown
Raw Normal View History

---
sidebar_position: 10
---
# Leave channel
Removes the current bot from the channel
2024-07-10 13:58:29 +03:00
`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
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```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"
2024-08-14 09:06:31 +03:00
{
"ok": true
}
```