1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Telegram/Forum-topic-management/Create-forum-thread.md
2024-06-05 13:35:05 +03:00

1.3 KiB

sidebar_position
2

Create forum thread

Creates a new thread in the group with theme functionality enabled

Function CreateForumThread(Val Token, Val ChatID, Val Title, Val IconID = "") ExportReturn ForumTopicManagement(Token, ChatID, Title, IconID);EndFunction

Parameter CLI option Type Destination
Token --token String Token
ChatID --forum String, Number Thread creation chat ID
Title --title String Thread title
IconID --icon String See GetAvatarIconList

Returns: Key-Value Pair - Serialized JSON response from Telegram

	
 Token = "6129457865:AAFyzNYOAFbu...";
 Chat = "-1001971186208";
 Icon = "5357419403325481346";
 Name = "TestTopic " + String(New UUID);
 
 Result = OPI_Telegram.CreateForumThread(Token, Chat, Name, Icon);
 
	
 
 oint telegram CreateForumThread --token "6129457865:AAFyzNYOAFbu..." --forum %forum% --title %title% --icon %icon%



{
 "ok": true,
 "result": {
 "message_thread_id": 2457,
 "name": "TestTopic bb6937b8-0372-4118-81f5-cb75b85c4627",
 "icon_color": 7322096,
 "icon_custom_emoji_id": "5357419403325481346"
 }
}