Close discussion
Close or delete discussion
Function CloseDiscussion(Val DiscussionID, Val DeleteCompletely = False, Val Parameters = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
DiscussionID | --topic | String, Number | ✔ | Discussion ID |
DeleteCompletely | --remove | Boolean | ✖ | Delete completely (True) or close |
Parameters | --auth | Structure Of String | ✖ | Authorization JSON or path to .json |
Returns: Map Of KeyAndValue - serialized JSON response from VK
1C:Enterprise/OneScript code example
Parameters = GetVKParameters();
DiscussionID = "54106885";
Result = OPI_VK.CloseDiscussion(DiscussionID, False, Parameters);
- Bash
- CMD/Bat
oint vk CloseDiscussion \
--topic "54109758" \
--remove "false" \
--auth ""/tmp/bnqifjjn.z2u.json""
oint vk CloseDiscussion ^
--topic "54109758" ^
--remove "false" ^
--auth ""/tmp/bnqifjjn.z2u.json""
Result
{
"response": 1
}