1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-05-27 23:07:37 +02:00
Vitaly the Alpaca (bot) 36a4920eb7 Main build (Jenkins)
2025-01-11 21:13:24 +03:00

61 lines
1.1 KiB
Plaintext
Vendored

---
sidebar_position: 10
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Leave channel
Removes the current bot from the channel
`Function LeaveChannel(Val Token, Val Channel) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Bot token |
| Channel | --channel | String | ✔ | Channel ID |
Returns: Map Of KeyAndValue - serialized JSON response from Slack
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "xoxb-6965308400114-696804637...";
Channel = "C0888T2RP5H";
Result = OPI_Slack.LeaveChannel(Token, Channel);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint slack LeaveChannel \
--token "***" \
--channel "C087WLGHMBQ"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint slack LeaveChannel ^
--token "***" ^
--channel "C087WLGHMBQ"
```
</TabItem>
</Tabs>
```json title="Result"
{
"ok": true
}
```