1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-07 15:20:39 +02:00
2024-08-09 17:15:52 +03:00

971 B

sidebar_position
4

Close forum thread

Closes the thread for new messages

Function CloseForumThread(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

Returns: Map Of KeyAndValue - Serialized JSON response from Telegram


 Token = "6129457865:AAFyzNYOAFbu...";
 Chat = "-1001971186208";
 Topic = "3896";
 
 Result = OPI_Telegram.CloseForumThread(Token, Chat); // Closes main topic
 
 Result = OPI_Telegram.CloseForumThread(Token, Chat, Topic);
 
 oint telegram CloseForumThread --token "6129457865:AAFyzNYOAFbu..." --forum %forum% --topic %topic%

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