Skip to main content

Rename channel

Changes the name of the channel

Function RenameChannel(Val Token, Val Channel, Val Name) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
Channel--channelStringChannel ID
Name--titleStringNew channel name
Returns

Map Of KeyAndValue - serialized JSON response from Slack

1C:Enterprise/OneScript code example
Token = "xoxb-6965308400114-696804637...";
Channel = "C09PUMJU2GM";
Name = "testconv" + String(New UUID);

Result = OPI_Slack.RenameChannel(Token, Channel, Name);
oint slack RenameChannel \
--token "***" \
--channel "C0BJFL9NJKE" \
--title "testconvac6f0e2d-6fc4-4c79-92d7-6ed33a0eff2e"
Result
{
"ok": true,
"channel": {
"id": "C0BJ5JU37B5",
"created": 1784480852,
"creator": "U06UG1CAYH2",
"is_org_shared": false,
"is_im": false,
"context_team_id": "T06UD92BS3C",
"updated": 1784480865865,
"name": "testconv3ad9af62-a094-414f-a398-c4296c35d494",
"name_normalized": "testconv3ad9af62-a094-414f-a398-c4296c35d494",
"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": 1784480854
},
"topic": {
"value": "TestTopic",
"creator": "U06UG1CAYH2",
"last_set": 1784480853
},
"shared_team_ids": [
"T06UD92BS3C"
],
"pending_connected_team_ids": [],
"is_member": true,
"last_read": "1784480857.551419",
"previous_names": [
"testconvec88670b-dc1e-4923-b233-d32bb6825667"
]
}
}