1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-27 21:48:56 +02:00
Vitaly the Alpaca (bot) 5e0a08b5cd Main build (Jenkins)
2024-12-10 09:08:34 +03:00

101 lines
2.1 KiB
Plaintext

---
sidebar_position: 5
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get channel
Gets information about the channel
`Function GetChannel(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 = "C083U8DM3EK";
Result = OPI_Slack.GetChannel(Token, Channel);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint slack GetChannel \
--token "***" \
--channel "C0848TV1D8V"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint slack GetChannel ^
--token "***" ^
--channel "C0848TV1D8V"
```
</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": 1728454514526,
"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": "TestTopic",
"creator": "U06UG1CAYH2",
"last_set": 1728454514
},
"purpose": {
"value": "TestGoal",
"creator": "U06UG1CAYH2",
"last_set": 1728454514
},
"previous_names": []
}
}
```