mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-02-09 13:47:03 +02:00
191 lines
4.2 KiB
Plaintext
191 lines
4.2 KiB
Plaintext
---
|
|
sidebar_position: 1
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Get channel list
|
|
Gets a list of available channels
|
|
|
|
|
|
|
|
`Function GetChannelList(Val Token, Val ExcludeArchived = False, Val Cursor = "") Export`
|
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|-|-|-|-|
|
|
| Token | --token | String | Bot token |
|
|
| ExcludeArchived | --notarchived | Boolean | Indicator of excluding archived channels |
|
|
| Cursor | --cursor | String | Pointer from the previous request, if the result rows > 100 |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Slack
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
Token = "xoxb-6965308400114-696804637...";
|
|
|
|
Result = OPI_Slack.GetChannelList(Token);
|
|
```
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"ok": true,
|
|
"channels": [
|
|
{
|
|
"id": "C06UD92DF1Q",
|
|
"name": "general",
|
|
"is_channel": true,
|
|
"is_group": false,
|
|
"is_im": false,
|
|
"is_mpim": false,
|
|
"is_private": false,
|
|
"created": 1713202497,
|
|
"is_archived": false,
|
|
"is_general": true,
|
|
"unlinked": 0,
|
|
"name_normalized": "general",
|
|
"is_shared": false,
|
|
"is_org_shared": false,
|
|
"is_pending_ext_shared": false,
|
|
"pending_shared": [],
|
|
"context_team_id": "T06UD92BS3C",
|
|
"updated": 1724394518358,
|
|
"parent_conversation": null,
|
|
"creator": "U06UABH3APP",
|
|
"is_ext_shared": false,
|
|
"shared_team_ids": [
|
|
"T06UD92BS3C"
|
|
],
|
|
"pending_connected_team_ids": [],
|
|
"is_member": false,
|
|
"topic": {
|
|
"value": "",
|
|
"creator": "",
|
|
"last_set": 0
|
|
},
|
|
"purpose": {
|
|
"value": "This is the one channel that will always include everyone. It’s a great spot for announcements and team-wide conversations.",
|
|
"creator": "U06UABH3APP",
|
|
"last_set": 1713202497
|
|
},
|
|
"properties": {
|
|
"use_case": "welcome"
|
|
},
|
|
"previous_names": [],
|
|
"num_members": 1
|
|
},
|
|
{
|
|
"id": "C06UFNUTKUL",
|
|
"name": "slack-api-librarry",
|
|
"is_channel": true,
|
|
"is_group": false,
|
|
"is_im": false,
|
|
"is_mpim": false,
|
|
"is_private": false,
|
|
"created": 1713202541,
|
|
"is_archived": false,
|
|
"is_general": false,
|
|
"unlinked": 0,
|
|
"name_normalized": "slack-api-librarry",
|
|
"is_shared": false,
|
|
"is_org_shared": false,
|
|
"is_pending_ext_shared": false,
|
|
"pending_shared": [],
|
|
"context_team_id": "T06UD92BS3C",
|
|
"updated": 1724394515808,
|
|
"parent_conversation": null,
|
|
"creator": "U06UABH3APP",
|
|
"is_ext_shared": false,
|
|
"shared_team_ids": [
|
|
"T06UD92BS3C"
|
|
],
|
|
"pending_connected_team_ids": [],
|
|
"is_member": true,
|
|
"topic": {
|
|
"value": "",
|
|
"creator": "",
|
|
"last_set": 0
|
|
},
|
|
"purpose": {
|
|
"value": "This channel is for everything #slack-api-librarry. Hold meetings, share docs, and make decisions together with your team.",
|
|
"creator": "U06UABH3APP",
|
|
"last_set": 1713202541
|
|
},
|
|
"properties": {
|
|
"tabs": [
|
|
{
|
|
"id": "files",
|
|
"label": "",
|
|
"type": "files"
|
|
}
|
|
],
|
|
"use_case": "project"
|
|
},
|
|
"previous_names": [],
|
|
"num_members": 2
|
|
},
|
|
{
|
|
"id": "C06UW6XHU5V",
|
|
"name": "testconvd9226ab3-0341-4abb-97c4-a185b7ace9e8",
|
|
"is_channel": true,
|
|
"is_group": false,
|
|
"is_im": false,
|
|
"is_mpim": false,
|
|
"is_private": false,
|
|
"created": 1713701752,
|
|
"is_archived": true,
|
|
"is_general": false,
|
|
"unlinked": 0,
|
|
"name_normalized": "testconvd9226ab3-0341-4abb-97c4-a185b7ace9e8",
|
|
"is_shared": false,
|
|
"is_org_shared": false,
|
|
"is_pending_ext_shared": false,
|
|
"pending_shared": [],
|
|
"context_team_id": "T06UD92BS3C",
|
|
"updated": 1724394515915,
|
|
"parent_conversation": null,
|
|
"creator": "U06UG1CAYH2",
|
|
"is_ext_shared": false,
|
|
"shared_team_ids": [
|
|
"T06UD92BS3C"
|
|
],
|
|
"pending_connected_team_ids": [],
|
|
"is_member": false,
|
|
"topic": {
|
|
"value": "",
|
|
"creator": "",
|
|
"last_set": 0
|
|
},
|
|
"purpose": {
|
|
"value": "",
|
|
"creator": "",
|
|
"last_set": 0
|
|
},
|
|
"previous_names": [],
|
|
"num_members": 0
|
|
},
|
|
{
|
|
"id": "C06UWD6523Z",
|
|
"name": "testconvdfd146d0-f8c0-4e9f-9df8-56cc13c7e1dc",
|
|
"is_channel": true,
|
|
"is_group": false,
|
|
"is_im": false,
|
|
"is_mpim": false,
|
|
"is_private": false,
|
|
"created": 1713712534,
|
|
"is_archived": true,
|
|
"is_general": false,
|
|
"unlinked": 0,
|
|
"name_normalized": "testconvdfd146d0-f8c0-4e9f-9df8-56cc13c7e1dc",
|
|
"is_shared": false,
|
|
...
|
|
```
|