1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-24 00:01:24 +02:00
Files
OpenIntegrations/docs/en/md/Slack/Channel-management/Rename-channel.mdx
Vitaly the Alpaca (bot) 3d4bbb5f8b Main build (Jenkins)
2025-09-01 14:51:24 +03:00

109 lines
2.7 KiB
Plaintext
Vendored

---
sidebar_position: 13
description: Rename 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';
# Rename channel
Changes the name of the channel
`Function RenameChannel(Val Token, Val Channel, Val Name) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Bot token |
| Channel | --channel | String | ✔ | Channel ID |
| Name | --title | String | ✔ | New channel name |
Returns: Map Of KeyAndValue - serialized JSON response from Slack
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "xoxb-6965308400114-696804637...";
Channel = "C09CYGP4G3G";
Name = "testconv" + String(New UUID);
Result = OPI_Slack.RenameChannel(Token, Channel, Name);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint slack RenameChannel \
--token "***" \
--channel "C096L63QTQQ" \
--title "testconvaf201078-eff7-4255-8a5c-3ca6e01522c0"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint slack RenameChannel ^
--token "***" ^
--channel "C096L63QTQQ" ^
--title "testconvaf201078-eff7-4255-8a5c-3ca6e01522c0"
```
</TabItem>
</Tabs>
```json title="Result"
{
"ok": true,
"channel": {
"id": "C07R448PZJ8",
"name": "testconvb42c1906-4136-4c7e-ae81-ba7ea2d8c02b",
"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": "testconvb42c1906-4136-4c7e-ae81-ba7ea2d8c02b",
"is_shared": false,
"is_org_shared": false,
"is_pending_ext_shared": false,
"pending_shared": [],
"context_team_id": "T06UD92BS3C",
"updated": 1728454516450,
"parent_conversation": null,
"creator": "U06UG1CAYH2",
"is_ext_shared": false,
"shared_team_ids": [
"T06UD92BS3C"
],
"pending_connected_team_ids": [],
"is_member": true,
"last_read": "1728454514.991459",
"topic": {
"value": "TestTopic",
"creator": "U06UG1CAYH2",
"last_set": 1728454514
},
"purpose": {
"value": "TestGoal",
"creator": "U06UG1CAYH2",
"last_set": 1728454514
},
"previous_names": [
"testconv2383f9a9-fc9f-4928-ba19-511c3b7e9c66"
]
}
}
```