Set channel purpose
Sets the channel purpose (description)
Function SetChannelGoal(Val Token, Val Channel, Val Purpose) Export
| Parameter | CLI option | Type | Required | Description | 
|---|---|---|---|---|
| Token | --token | String | ✔ | Bot token | 
| Channel | --channel | String | ✔ | Channel ID | 
| Purpose | --purpose | String | ✔ | Channel purpose | 
Returns: Map Of KeyAndValue - serialized JSON response from Slack
1C:Enterprise/OneScript code example
    Token   = "xoxb-6965308400114-696804637...";
    Channel = "C09M6UV9KT2";
    Purpose = "TestGoal";
    Result = OPI_Slack.SetChannelGoal(Token, Channel, Purpose);
- Bash
- CMD/Bat
    oint slack SetChannelGoal \
     --token "***" \
     --channel "C09LEMNRUD9" \
     --purpose "TestGoal"
    oint slack SetChannelGoal ^
     --token "***" ^
     --channel "C09LEMNRUD9" ^
     --purpose "TestGoal"
Result
{
 "ok": true,
 "channel": {
  "id": "C09LEMNRUD9",
  "created": 1760521294,
  "creator": "U06UG1CAYH2",
  "is_org_shared": false,
  "is_im": false,
  "context_team_id": "T06UD92BS3C",
  "updated": 1760521300490,
  "name": "testconvf0560358-c9cc-406f-b690-d00904ee0015",
  "name_normalized": "testconvf0560358-c9cc-406f-b690-d00904ee0015",
  "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": 1760521300
  },
  "topic": {
   "value": "TestTopic",
   "creator": "U06UG1CAYH2",
   "last_set": 1760521297
  },
  "shared_team_ids": [
   "T06UD92BS3C"
  ],
  "pending_connected_team_ids": [],
  "is_member": false,
  "previous_names": []
 }
}