1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/Slack/Channel-management/Create-channel.mdx
Vitaly the Alpaca (bot) 47fa4e92bb Main build (Jenkins)
2025-06-27 11:47:43 +03:00

107 lines
2.5 KiB
Plaintext
Vendored

---
sidebar_position: 3
description: Create channel and other functions to work with Slack in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Slack]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Create channel
Creates a new channel
`Function CreateChannel(Val Token, Val Name, Val Private = False) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Bot token |
| Name | --title | String | ✔ | Channel name |
| Private | --private | Boolean | ✖ | Create channel as private |
Returns: Map Of KeyAndValue - serialized JSON response from Slack
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = FunctionParameters["Slack_Token"];
Name = "testconv" + String(New UUID);
Result = OPI_Slack.CreateChannel(Token, Name);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint slack CreateChannel \
--token "***" \
--title "testconvbc58609f-8b10-4821-9d27-c942aa5ae3f1" \
--private false
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint slack CreateChannel ^
--token "***" ^
--title "testconvbc58609f-8b10-4821-9d27-c942aa5ae3f1" ^
--private false
```
</TabItem>
</Tabs>
```json title="Result"
{
"ok": true,
"channel": {
"id": "C07R448PZJ8",
"name": "testconv2383f9a9-fc9f-4928-ba19-511c3b7e9c66",
"is_channel": true,
"is_group": false,
"is_im": false,
"is_mpim": false,
"is_private": false,
"created": 1728454513,
"is_archived": false,
"is_general": false,
"unlinked": 0,
"name_normalized": "testconv2383f9a9-fc9f-4928-ba19-511c3b7e9c66",
"is_shared": false,
"is_org_shared": false,
"is_pending_ext_shared": false,
"pending_shared": [],
"context_team_id": "T06UD92BS3C",
"updated": 1728454513809,
"parent_conversation": null,
"creator": "U06UG1CAYH2",
"is_ext_shared": false,
"shared_team_ids": [
"T06UD92BS3C"
],
"pending_connected_team_ids": [],
"is_member": true,
"last_read": "0000000000.000000",
"topic": {
"value": "",
"creator": "",
"last_set": 0
},
"purpose": {
"value": "",
"creator": "",
"last_set": 0
},
"previous_names": [],
"priority": 0
}
}
```