mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
939 B
939 B
sidebar_position |
---|
9 |
Edit main forum thread name
Edits the name of the main forum thread
Function EditMainForumTopicName(Val Token, Val ChatID, Val Title) Export
Parameter | CLI option | Type | Destination |
---|---|---|---|
Token | --token | String | Token |
ChatID | --forum | String, Number | Thread chat ID |
Title | --title | String | New main thread name |
Returns: Map Of KeyAndValue - Serialized JSON response from Telegram
Title = "New main thread name " + String(New UUID);
Token = "6129457865:AAFyzNYOAFbu...";
Chat = "-1001971186208";
Result = OPI_Telegram.EditMainForumTopicName(Token, Chat, Title);
oint telegram EditMainForumTopicName --token "6129457865:AAFyzNYOAFbu..." --forum %forum% --title %title%
{
"ok": true,
"result": true
}