Rename channel
Changes the name of the channel
- Parameters
- Advanced call ?
Function RenameChannel(Val Token, Val Channel, Val Name) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Bot token |
| Channel | --channel | String | ✔ | Channel ID |
| Name | --title | String | ✔ | New channel name |
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 HTTP structure with fields code, body, and headers |
| retries | Number of HTTP request send attempts on 5** status codes or internal client errors |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
1C:Enterprise/OneScript code example
Token = "xoxb-6965308400114-696804637...";
Channel = "C09PUMJU2GM";
Name = "testconv" + String(New UUID);
Result = OPI_Slack.RenameChannel(Token, Channel, Name);
- Bash
- CMD/Bat
oint slack RenameChannel \
--token "***" \
--channel "C0B65EDL7U6" \
--title "testconv13606d2b-114e-4709-a22f-600521206514"
oint slack RenameChannel ^
--token "***" ^
--channel "C0B65EDL7U6" ^
--title "testconv13606d2b-114e-4709-a22f-600521206514"
Result
{
"ok": true,
"channel": {
"id": "C0B65EDL7U6",
"created": 1779804380,
"creator": "U06UG1CAYH2",
"is_org_shared": false,
"is_im": false,
"context_team_id": "T06UD92BS3C",
"updated": 1779804392176,
"name": "testconv13606d2b-114e-4709-a22f-600521206514",
"name_normalized": "testconv13606d2b-114e-4709-a22f-600521206514",
"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": 1779804383
},
"topic": {
"value": "TestTopic",
"creator": "U06UG1CAYH2",
"last_set": 1779804382
},
"shared_team_ids": [
"T06UD92BS3C"
],
"pending_connected_team_ids": [],
"is_member": true,
"last_read": "1779804385.615599",
"previous_names": [
"testconv13888255-875a-478d-96e9-4d3cfc72d1cc"
]
}
}