Skip to main content

Invite users to channel

Adds specified users to the channel

Function InviteUsersToChannel(Val Token, Val Channel, Val ArrayOfUsers) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
Channel--channelStringChannel ID
ArrayOfUsers--usersArray Of StringUser ID Array
Returns

Map Of KeyAndValue - serialized JSON response from Slack

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

Result = OPI_Slack.InviteUsersToChannel(Token, Channel, User);
oint slack InviteUsersToChannel \
--token "***" \
--channel "C0BBMKUBKKK" \
--users "U06UABH3APP"
Result
{
"ok": true,
"channel": {
"id": "C0BBNDSRZ4Z",
"created": 1781804434,
"creator": "U06UG1CAYH2",
"is_org_shared": false,
"is_im": false,
"context_team_id": "T06UD92BS3C",
"updated": 1781804439256,
"name": "testconveb624fed-a0e3-4e55-9582-ac70b01296cb",
"name_normalized": "testconveb624fed-a0e3-4e55-9582-ac70b01296cb",
"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": 1781804439
},
"topic": {
"value": "TestTopic",
"creator": "U06UG1CAYH2",
"last_set": 1781804437
},
"shared_team_ids": [
"T06UD92BS3C"
],
"pending_connected_team_ids": [],
"is_member": true,
"last_read": "0000000000.000000",
"previous_names": []
}
}