Skip to main content

Get chat admins

Gets the list of chat administrators

Function GetChatAdmins(Val Token, Val ChatID) Export

ParameterCLI optionTypeDescription
Token--tokenStringBot token
ChatID--chatidString, NumberChat ID

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


tip

Method at API documentation: GET /chats/getAdmins


Code example
    Token  = "001.3501506236.091...";
ChatID = "AoLI0egLWBSLR1Ngn2w";

Result = OPI_VKTeams.GetChatAdmins(Token, ChatID);
CLI command example
    
oint vkteams GetChatAdmins --token "001.3501506236.091..." --chatid "AoLI0egLWBSLR1Ngn2w"

Result
{
"admins": [
{
"userId": "1011893356"
},
{
"creator": true,
"userId": "bayselonarrend@openintegrations.bizml.ru"
}
],
"ok": true
}