Set channel topic
Sets the channel topic
- Parameters
- Advanced call ?
Function SetChannelTopic(Val Token, Val Channel, Val Topic) Export
| Parameter | CLI option | Type | Required | 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
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete structure with fields code, body, and headers |
1C:Enterprise/OneScript code example
Token = "xoxb-6965308400114-696804637...";
Channel = "C09PUMJU2GM";
Topic = "TestTopic";
Result = OPI_Slack.SetChannelTopic(Token, Channel, Topic);
- Bash
- CMD/Bat
oint slack SetChannelTopic \
--token "***" \
--channel "C0B1N1UUKL1" \
--theme "TestTopic"
oint slack SetChannelTopic ^
--token "***" ^
--channel "C0B1N1UUKL1" ^
--theme "TestTopic"
Result
{
"ok": true,
"channel": {
"id": "C0B1N1UUKL1",
"created": 1777723150,
"creator": "U06UG1CAYH2",
"is_org_shared": false,
"is_im": false,
"context_team_id": "T06UD92BS3C",
"updated": 1777723151714,
"name": "testconv5e95e519-56f8-44f5-a566-79bb36665b78",
"name_normalized": "testconv5e95e519-56f8-44f5-a566-79bb36665b78",
"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": "",
"creator": "",
"last_set": 0
},
"topic": {
"value": "TestTopic",
"creator": "U06UG1CAYH2",
"last_set": 1777723151
},
"shared_team_ids": [
"T06UD92BS3C"
],
"pending_connected_team_ids": [],
"is_member": false,
"previous_names": []
}
}