Unpin message
Unpins a previously pinned chat message
Function UnpinMessage(Val Token, Val ChatID, Val MessageID) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Token | --token | String | ✔ | Bot token |
ChatID | --chatid | String, Number | ✔ | Chat ID |
MessageID | --messageid | String, Number | ✔ | ID 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
1C:Enterprise/OneScript code example
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7428324441567793059";
Result = OPI_VKTeams.UnpinMessage(Token, ChatID, MessageID);
- Bash
- CMD/Bat
oint vkteams UnpinMessage \
--token "***" \
--chatid "689203963@chat.agent" \
--messageid "7431934219846160783"
oint vkteams UnpinMessage ^
--token "***" ^
--chatid "689203963@chat.agent" ^
--messageid "7431934219846160783"
Result
{
"ok": true
}