CreateForumTopic

---functions---
messages.createForumTopic#2f98c3d5 title_missing:flags.4?true peer:InputPeer title:string icon_color:flags.0?int icon_emoji_id:flags.3?long random_id:long send_as:flags.2?InputPeer = Updates

Returns

Updates

Parameters

title_missingtrueoptional
peerInputPeerrequired
titlestringrequired
icon_colorintoptional
icon_emoji_idlongoptional
random_idlongrequired
send_asInputPeeroptional

Example

The examples below use placeholder values. Replace them with real data before running the code.

Minimal
import asyncio
import random
from ferogram import Client

app = Client("my_session", api_id=12345, api_hash="0123456789abcdef0123456789abcdef")

async def main():
    await app.start()
    result = await app.raw.messages.CreateForumTopic(
        peer='username',
        title='My title',
        random_id=random.randrange(-2**63, 2**63)
    )
    print(result)

asyncio.run(main())

The minimal example uses Ferogram's raw proxy shorthand. Peers can be passed as strings and required primitives get safe defaults. Expand Full API to see every parameter.

Full API
import asyncio
import random
from ferogram import Client, raw

app = Client("my_session", api_id=12345, api_hash="0123456789abcdef0123456789abcdef")

async def main():
    await app.start()
    result = await app(raw.functions.messages.CreateForumTopic(
        title_missing=True,
        peer=raw.types.InputPeerSelf(),
        title='My title',
        icon_color=42,
        icon_emoji_id=-12398745604826,
        random_id=random.randrange(-2**63, 2**63),
        send_as=raw.types.InputPeerSelf()
    ))
    print(result)

asyncio.run(main())