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/Invite-users-to-channel.mdx
Vitaly the Alpaca (bot) 9be4b23629 Main build (Jenkins)
2025-10-31 15:42:42 +03:00

106 lines
2.6 KiB
Plaintext
Vendored

---
sidebar_position: 7
description: Invite users to 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';
# Invite users to channel
Adds specified users to the channel
`Function InviteUsersToChannel(Val Token, Val Channel, Val ArrayOfUsers) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Bot token |
| Channel | --channel | String | ✔ | Channel ID |
| ArrayOfUsers | --users | Array Of String | ✔ | User ID Array |
Returns: Map Of KeyAndValue - serialized JSON response from Slack
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "xoxb-6965308400114-696804637...";
Channel = "C09PEK91FU3";
User = "U06UABH3APP";
Result = OPI_Slack.InviteUsersToChannel(Token, Channel, User);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint slack InviteUsersToChannel \
--token "***" \
--channel "C09PKF1G8M9" \
--users "U06UABH3APP"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint slack InviteUsersToChannel ^
--token "***" ^
--channel "C09PKF1G8M9" ^
--users "U06UABH3APP"
```
</TabItem>
</Tabs>
```json title="Result"
{
"ok": true,
"channel": {
"id": "C09PUMJU2GM",
"created": 1761911221,
"creator": "U06UG1CAYH2",
"is_org_shared": false,
"is_im": false,
"context_team_id": "T06UD92BS3C",
"updated": 1761911223186,
"name": "testconvc05a3175-6801-4217-9490-93d7fa92c7ea",
"name_normalized": "testconvc05a3175-6801-4217-9490-93d7fa92c7ea",
"is_channel": true,
"is_group": false,
"is_mpim": false,
"is_private": false,
"is_archived": false,
"is_general": false,
"is_shared": false,
"is_ext_shared": false,
"unlinked": 0,
"is_pending_ext_shared": false,
"pending_shared": [],
"parent_conversation": null,
"purpose": {
"value": "TestGoal",
"creator": "U06UG1CAYH2",
"last_set": 1761911223
},
"topic": {
"value": "TestTopic",
"creator": "U06UG1CAYH2",
"last_set": 1761911222
},
"shared_team_ids": [
"T06UD92BS3C"
],
"pending_connected_team_ids": [],
"is_member": true,
"last_read": "0000000000.000000",
"previous_names": []
}
}
```