channels.setDiscussionGroup

Associate a group to a channel as discussion group for that channel

Example

const {Api, TelegramClient} = require('telegram');
const {StringSession} = require('telegram/sessions');

const session = new StringSession('');
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
    const result = await client.invoke(new Api.channels.setDiscussionGroup({
        broadcast: new Api.InputChannel({...}),
        group: new Api.InputChannel({...}),
        }));
    console.log(result); // prints the result
})();

TL schema

boolFalse#bc799737 = Bool;
boolTrue#997275b5 = Bool;
---functions---
channels.setDiscussionGroup#40582bb2 broadcast:InputChannel group:InputChannel = Bool;

Parameters

Name

Type

Description

broadcast

Channel

group

Discussion group to associate to the channel

Result

Bool

Possible errors

Code

Type

Description

400

BROADCAST_ID_INVALID

Broadcast ID invalid

400

LINK_NOT_MODIFIED

Discussion link not modified

400

MEGAGROUP_ID_INVALID

Invalid supergroup ID

Can bots use this methd ?

yes

Groups can be associated to a channel as a discussion group, to allow users to discuss about posts.

Last updated