GramJS

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(""); // You should put your string session here
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
  await client.connect(); // This assumes you have already authenticated with .start()

  const result = await client.invoke(
    new Api.channels.SetDiscussionGroup({
      broadcast: "username",
      group: "username",
    })
  );
  console.log(result); // prints the result
})();
import { Api, TelegramClient } from "telegram";
import { StringSession } from "telegram/sessions";

const session = new StringSession(""); // You should put your string session here
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
  await client.connect(); // This assumes you have already authenticated with .start()

  const result: Api.Bool = await client.invoke(
    new Api.channels.SetDiscussionGroup({
      broadcast: "username",
      group: "username",
    })
  );
  console.log(result); // prints the result
})();

Parameters

NameTypeDescription
broadcastInputChannelChannel
groupInputChannelDiscussion group to associate to the channel

Result

Bool

Possible errors

CodeTypeDescription
400BROADCAST_ID_INVALIDBroadcast ID invalid.
400CHANNEL_INVALIDThe provided channel is invalid.
400CHAT_ADMIN_REQUIREDYou must be an admin in this chat to do this.
400LINK_NOT_MODIFIEDDiscussion link not modified.
400MEGAGROUP_ID_INVALIDInvalid supergroup ID.
400MEGAGROUP_PREHISTORY_HIDDENGroup with hidden history for new members can't be set as discussion groups.

Can bots use this method?

No

Discussion groups

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