GramJS

account.SetGlobalPrivacySettings

Set global privacy settings

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.account.SetGlobalPrivacySettings({
      settings: new Api.GlobalPrivacySettings({
        archiveAndMuteNewNoncontactPeers: false,
      }),
    })
  );
  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.GlobalPrivacySettings = await client.invoke(
    new Api.account.SetGlobalPrivacySettings({
      settings: new Api.GlobalPrivacySettings({
        archiveAndMuteNewNoncontactPeers: false,
      }),
    })
  );
  console.log(result); // prints the result
})();

Parameters

NameTypeDescription
settingsGlobalPrivacySettingsGlobal privacy settings

Result

GlobalPrivacySettings

Possible errors

CodeTypeDescription
400AUTOARCHIVE_NOT_AVAILABLEThe autoarchive setting is not available at this time: please check the value of the autoarchive_setting_available field in client config ยป before calling this method.

Can bots use this method?

No

Client configuration

The MTProto API has multiple configuration parameters that can be fetched with the appropriate methods.