Skip to main content

Pin message

Pins the selected message in the chat room

Function PinMessage(Val Token, Val ChatID, Val MessageID) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
ChatID--chatidString, NumberChat ID
MessageID--messageidString, NumberID of the message to be pinned

Returns: Map Of KeyAndValue - serialized JSON response from VK Teams


tip

To call this method, the bot must be an administrator in the chat room

Method at API documentation: GET /chats/pinMessage


1C:Enterprise/OneScript code example
    Token     = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7440018473578666137";

Result = OPI_VKTeams.PinMessage(Token, ChatID, MessageID);
    oint vkteams PinMessage \
--token "***" \
--chatid "689203963@chat.agent" \
--messageid "7440070837819939092"
Result
{
"ok": true
}