2024-06-05 12:19:46 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 10
|
|
|
|
---
|
|
|
|
|
|
|
|
# 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*
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Token | --token | String | Token |
|
|
|
|
| ChatID | --forum | String, Number | Thread chat ID |
|
|
|
|
| ThreadID | --topic | String, Number | Thread ID. Main if not filled |
|
|
|
|
|
|
|
|
|
2024-06-06 14:33:52 +02:00
|
|
|
Returns: Map Of KeyAndValue - Serialized JSON response from Telegram
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
|
|
|
|
|
|
Token = "6129457865:AAFyzNYOAFbu...";
|
|
|
|
Chat = "-1001971186208";
|
|
|
|
Topic = "2673";
|
|
|
|
|
|
|
|
Result = OPI_Telegram.ClearThreadPinnedMessagesList(Token, Chat);
|
|
|
|
Result = OPI_Telegram.ClearThreadPinnedMessagesList(Token, Chat, Topic);
|
2024-06-05 12:35:05 +02:00
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint telegram ClearThreadPinnedMessagesList --token "6129457865:AAFyzNYOAFbu..." --forum %forum% --topic %topic%
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
|
|
|
|
{
|
|
|
|
"ok": true,
|
|
|
|
"result": true
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|