Skip to main content

Create discussion

Creates a new discussion

Function CreateDiscussion(Val Name, Val FirstMessageText, Val Parameters = "") Export

ParameterCLI optionTypeDescription
Name--titleStringDiscussion name
FirstMessageText--textStringText of the first message
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


Code example
    Parameters = GetVKParameters();
Name = "Discussing: Which color is better?";
Message = "Red, yellow, blue, or some other?";

Result = OPI_VK.CreateDiscussion(Name, Message, Parameters);
CLI command example
    
oint vk CreateDiscussion --title "Discussing: Which color is better?" --text %text% --auth "GetVKParameters()"

Result
{
"response": 51182455
}