1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-02 23:27:50 +02:00
Vitaly the Alpaca (bot) c93e84e6d1 Main build (Jenkins)
2024-09-29 19:41:20 +03:00

1.8 KiB

sidebar_position
sidebar_position
11

Set channel topic

Sets the channel topic

Function SetChannelTopic(Val Token, Val Channel, Val Topic) Export

Parameter CLI option Type Description
Token --token String Bot token
Channel --channel String Channel ID
Topic --theme String Channel topic

Returns: Map Of KeyAndValue - Serialized JSON response from Slack


    Token   = "xoxb-6965308400114-696804637...";
    Channel = "C07PK52ES3U";
    Topic   = "TestTopic";

    Result = OPI_Slack.SetChannelTopic(Token, Channel, Topic);
    
  oint slack SetChannelTopic --token %token% --channel "C070VPMKN8J" --theme "TestTopic"

{
  "ok": true,
  "channel": {
  "id": "C070VPMKN8J",
  "name": "testconv9a14fe4d-2fb1-4e47-b1e4-9bc1e4f7a05c",
  "is_channel": true,
  "is_group": false,
  "is_im": false,
  "is_mpim": false,
  "is_private": false,
  "created": 1714146542,
  "is_archived": false,
  "is_general": false,
  "unlinked": 0,
  "name_normalized": "testconv9a14fe4d-2fb1-4e47-b1e4-9bc1e4f7a05c",
  "is_shared": false,
  "is_org_shared": false,
  "is_pending_ext_shared": false,
  "pending_shared": [],
  "context_team_id": "T06UD92BS3C",
  "updated": 1714146542817,
  "parent_conversation": null,
  "creator": "U06UG1CAYH2",
  "is_ext_shared": false,
  "shared_team_ids": [
  "T06UD92BS3C"
  ],
  "pending_connected_team_ids": [],
  "is_member": false,
  "topic": {
  "value": "TestTopic",
  "creator": "U06UG1CAYH2",
  "last_set": 1714146542
  },
  "purpose": {
  "value": "",
  "creator": "",
  "last_set": 0
  },
  "previous_names": []
  }
  }