mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
972 B
972 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 | Description |
---|---|---|---|
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 = "51798392";
Message = "I like yellow more";
Result = OPI_VK.WriteInDiscussion(DiscussionID, Message, Parameters);
oint vk WriteInDiscussion --topic "51798392" --text %text% --auth "GetVKParameters()"
{
"response": 705
}