2024-06-05 12:19:46 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
# Create discussion
|
|
|
|
Creates a new discussion
|
|
|
|
|
|
|
|
|
|
|
|
*Function CreateDiscussion(Val Name, Val FirstMessageText, Val Parameters = "") Export*
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Name | --title | String | Discussion name |
|
|
|
|
| FirstMessageText | --text | String | Text of the first message |
|
|
|
|
| Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
|
|
|
|
|
|
|
|
|
2024-06-06 14:33:52 +02:00
|
|
|
Returns: Map Of KeyAndValue - Serialized JSON response from VK
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
|
|
|
|
|
|
Parameters = GetVKParameters();
|
|
|
|
Name = "Discussing: Which color is better?";
|
|
|
|
Message = "Red, yellow, blue, or some other?";
|
|
|
|
|
|
|
|
Result = OPI_VK.CreateDiscussion(Name, Message, Parameters);
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
2024-06-07 08:40:42 +02:00
|
|
|
oint vk CreateDiscussion --title %title% --text %text% --auth %auth%
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
|
|
|
|
{
|
|
|
|
"response": 51182455
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|