Skip to main content

Write a comment

Creates a comment under the selected record

Function WriteComment(Val PostID, Val WallID, Val Text, Val Parameters = "") Export

ParameterCLI optionTypeDescription
PostID--postString, NumberID of the target post
WallID--wallString, NumberID of the wall where the post is located
Text--textStringComment text
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


Code example
    Parameters = GetVKParameters();
Text = "NewComment";
PostID = "3754";
WallID = Parameters["owner_id"];

Result = OPI_VK.WriteComment(PostID, WallID, Text, Parameters);
CLI command example
    
oint vk WriteComment --post "3356" --wall "Parameters[owner_id]" --text %text% --auth "GetVKParameters()"

Result
{
"response": {
"parents_stack": [],
"comment_id": 229
}
}