1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/VK/Discussion-management/Write-in-discussion.md
2024-08-14 09:06:31 +03:00

47 lines
972 B
Markdown

---
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
<br/>
```bsl title="Code example"
Parameters = GetVKParameters();
DiscussionID = "51798392";
Message = "I like yellow more";
Result = OPI_VK.WriteInDiscussion(DiscussionID, Message, Parameters);
```
```sh title="CLI command example"
oint vk WriteInDiscussion --topic "51798392" --text %text% --auth "GetVKParameters()"
```
```json title="Result"
{
"response": 705
}
```