1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-22 10:05:29 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2024-09-17 11:55:02 +03:00
parent b0a4a01c88
commit ce6e0b1ee1
882 changed files with 6381 additions and 6371 deletions
@@ -29,7 +29,7 @@ Method at API documentation: [GET /messages/deleteMessages](https://teams.vk.com
```bsl title="Code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7412922929362503032";
MessageID = "7415516728832034620";
Result = OPI_VKTeams.DeleteMessage(Token, ChatID, MessageID);
```
@@ -33,7 +33,7 @@ You can mention a user by appending their userId to the text in the following fo
```bsl title="Code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7412922929362503032";
MessageID = "7415516728832034620";
Text = "New message text";
Result = OPI_VKTeams.EditMessageText(Token, ChatID, MessageID, Text);
@@ -34,7 +34,7 @@ Only the chatId from events can be passed to the FromChatID (the code from the c
Token = "001.3501506236.091...";
ChatID = "AoLI0egLWBSLR1Ngn2w";
FromChatID = "689203963@chat.agent";
MessageID = "7412922929362503032";
MessageID = "7415516728832034620";
Result = OPI_VKTeams.ForwardMessage(Token, MessageID, FromChatID, ChatID);
@@ -31,7 +31,7 @@ To call this method, the bot must be an administrator in the chat room
```bsl title="Code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7412922929362503032";
MessageID = "7415516728832034620";
Result = OPI_VKTeams.PinMessage(Token, ChatID, MessageID);
```
@@ -39,7 +39,7 @@ You can mention a user by appending their userId to the text in the following fo
Result = OPI_VKTeams.SendTextMessage(Token, ChatID, Text);
ChatID = "689203963@chat.agent";
ReplyID = "7412922929362503032";
ReplyID = "7415516728832034620";
Text = "<b>Bold text</b>";
Markup = "HTML";
@@ -34,7 +34,7 @@ If you want the client to display this file as a playable voice message, it must
```bsl title="Code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
ReplyID = "7412922929362503032";
ReplyID = "7415516728832034620";
Text = "File caption";
File = "https://openintegrations.dev/test_data/song.m4a" ; // URL
@@ -31,7 +31,7 @@ To call this method, the bot must be an administrator in the chat room
```bsl title="Code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7412922929362503032";
MessageID = "7415516728832034620";
Result = OPI_VKTeams.UnpinMessage(Token, ChatID, MessageID);
```