Skip to main content

Unpin message

Unpins a previously pinned chat message

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

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

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/unpinMessage


Code example
    Token     = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7407047289547522916";

Result = OPI_VKTeams.UnpinMessage(Token, ChatID, MessageID);
CLI command example
    
oint vkteams UnpinMessage --token "001.3501506236.091..." --chatid "689203963@chat.agent" --messageid "7401463509940174907"

Result
{
"ok": true
}