--- sidebar_position: 1 description: Get channel list 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'; # Get channel list Gets a list of available channels `Function GetChannelList(Val Token, Val ExcludeArchived = False, Val Cursor = "") Export` | Parameter | CLI option | Type | Required | 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
```bsl title="1C:Enterprise/OneScript code example" Token = "xoxb-6965308400114-696804637..."; Result = OPI_Slack.GetChannelList(Token); ``` ```bash oint slack GetChannelList \ --token "***" ``` ```batch oint 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, ... ```