Skip to main content

Clear thread's pinned messages list

Clears the list of pinned messages in the forum thread

Function ClearThreadPinnedMessagesList(Val Token, Val ChatID, Val ThreadID = "") Export

ParameterCLI optionTypeDescription
Token--tokenStringToken
ChatID--forumString, NumberThread chat ID
ThreadID--topicString, NumberThread ID. Main if not filled

Returns: Map Of KeyAndValue - Serialized JSON response from Telegram


Code example
  Token = "6129457865:AAFyzNYOAFbu...";
Chat = "-1001971186208";
Topic = "3896";

Result = OPI_Telegram.ClearThreadPinnedMessagesList(Token, Chat);

Result = OPI_Telegram.ClearThreadPinnedMessagesList(Token, Chat, Topic);
CLI command example
    
oint telegram ClearThreadPinnedMessagesList --token "6129457865:AAFyzNYOAFbu..." --forum %forum% --topic %topic%

Result
{
"ok": true,
"result": true
}