messages.EditExportedChatInvite
Edit an exported chat invite
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.messages.EditExportedChatInvite({
peer: "username",
link: "some string here",
revoked: true,
expireDate: 43,
usageLimit: 43,
requestNeeded: false,
title: "My very normal title",
})
);
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.messages.ExportedChatInvite = await client.invoke(
new Api.messages.EditExportedChatInvite({
peer: "username",
link: "some string here",
revoked: true,
expireDate: 43,
usageLimit: 43,
requestNeeded: false,
title: "My very normal title",
})
);
console.log(result); // prints the result
})();
Parameters
Name | Type | Description |
---|---|---|
flags | # | Flags, see TL conditional fields |
revoked | flags.2?true | Whether to revoke the chat invite |
peer | InputPeer | Chat |
link | string | Invite link |
expireDate | flags.0?int | New expiration date |
usageLimit | flags.1?int | Maximum number of users that can join using this link |
requestNeeded | flags.3?Bool | Whether admin confirmation is required before admitting each separate user into the chat |
title | flags.4?string | Description of the invite link, visible only to administrators |
Result
Possible errors
Code | Type | Description |
---|---|---|
403 | EDIT_BOT_INVITE_FORBIDDEN | Normal users can't edit invites that were created by bots. |
400 | PEER_ID_INVALID | The provided peer id is invalid. |
Can bots use this method?
Yes