1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-05 15:15:50 +02:00
2024-06-06 15:33:52 +03:00

932 B

sidebar_position
4

Write in discussion

Adds a message to the discussion on behalf of the group

Function WriteInDiscussion(Val DiscussionID, Val Text, Val Parameters = "") Export

Parameter CLI option Type Destination
DiscussionID --topic String, Number Discussion ID
Text --text String Message text
Parameters --auth Structure Of String Authorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK

	
 Parameters = GetVKParameters();
 DiscussionID = "51206275";
 Message = "I like yellow more";
 
 Result = OPI_VK.WriteInDiscussion(DiscussionID, Message, Parameters);
 
	
 
 oint vk WriteInDiscussion --topic %topic% --text %text% --auth %auth%



{
 "response": 705
}