1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-25 21:39:21 +02:00
OpenIntegrations/docs/en/md/Slack/Channel-management/Invite-users-to-channel.md
Vitaly the Alpaca (bot) b4a9919e77 Main build (Jenkins)
2024-10-13 16:53:00 +03:00

1.9 KiB

sidebar_position
7

Invite users to channel

Adds specified users to the channel

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

Parameter CLI option Type Description
Token --token String Bot token
Channel --channel String Channel ID
ArrayOfUsers --users Array Of String User ID Array

Returns: Map Of KeyAndValue - serialized JSON response from Slack


    Token   = "xoxb-6965308400114-696804637...";
    Channel = "C07R7MSSPDM";
    User    = "U06UABH3APP";

    Result = OPI_Slack.InviteUsersToChannel(Token, Channel, User);
    
  oint slack InviteUsersToChannel --token %token% --channel "C070VPMKN8J" --users %users%

{
 "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": []
 }
}