Skip to main content

Join channel

Adds the current bot to the channel

Function JoinChannel(Val Token, Val Channel) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
Channel--channelStringChannel ID

Returns: Map Of KeyAndValue - serialized JSON response from Slack


1C:Enterprise/OneScript code example
    Token   = "xoxb-6965308400114-696804637...";
Channel = "C09F9H2HQR2";

Result = OPI_Slack.JoinChannel(Token, Channel);
    oint slack JoinChannel \
--token "***" \
--channel "C09FA0U9ZEZ"
Result
{
"ok": true,
"channel": {
"id": "C09FA0U9ZEZ",
"created": 1757975777,
"creator": "U06UG1CAYH2",
"is_org_shared": false,
"is_im": false,
"context_team_id": "T06UD92BS3C",
"updated": 1757975783276,
"name": "testconv0b859ede-fd17-4b6a-865c-5cb5a2c97176",
"name_normalized": "testconv0b859ede-fd17-4b6a-865c-5cb5a2c97176",
"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": 1757975783
},
"topic": {
"value": "TestTopic",
"creator": "U06UG1CAYH2",
"last_set": 1757975780
},
"shared_team_ids": [
"T06UD92BS3C"
],
"pending_connected_team_ids": [],
"is_member": true,
"last_read": "1757975788.376549",
"priority": 0,
"previous_names": []
}
}