mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
46 lines
1.8 KiB
Markdown
46 lines
1.8 KiB
Markdown
|
---
|
||
|
title: "chatlists.editExportedInvite"
|
||
|
description: "Edit a [chat folder deep link »](https://core.telegram.org/api/links#chat-folder-links)."
|
||
|
grand_parent: "Telegram RPC API"
|
||
|
parent: "Methods"
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
redirect_from: /API_docs/methods/chatlists_editExportedInvite.html
|
||
|
---
|
||
|
# Method: chatlists.editExportedInvite
|
||
|
[Back to methods index](index.html)
|
||
|
|
||
|
|
||
|
|
||
|
Edit a [chat folder deep link »](https://core.telegram.org/api/links#chat-folder-links).
|
||
|
|
||
|
### Parameters:
|
||
|
|
||
|
| Name | Type | Description | Required |
|
||
|
|----------|---------------|-------------|----------|
|
||
|
|chatlist|[InputChatlist](/API_docs/types/InputChatlist.html) | Folder ID | Yes|
|
||
|
|slug|[string](/API_docs/types/string.html) | `slug` obtained from the [chat folder deep link »](https://core.telegram.org/api/links#chat-folder-links). | Optional|
|
||
|
|title|[string](/API_docs/types/string.html) | If set, sets a new name for the link | Optional|
|
||
|
|peers|Array of [Username, chat ID, Update, Message or InputPeer](/API_docs/types/InputPeer.html) | If set, changes the list of peers shared with the link | Optional|
|
||
|
|
||
|
|
||
|
### Return type: [ExportedChatlistInvite](/API_docs/types/ExportedChatlistInvite.html)
|
||
|
|
||
|
### Can bots use this method: **YES**
|
||
|
|
||
|
|
||
|
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
||
|
|
||
|
|
||
|
```php
|
||
|
if (!file_exists('madeline.php')) {
|
||
|
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
|
||
|
}
|
||
|
include 'madeline.php';
|
||
|
|
||
|
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
|
||
|
$MadelineProto->start();
|
||
|
|
||
|
$ExportedChatlistInvite = $MadelineProto->chatlists->editExportedInvite(chatlist: $InputChatlist, slug: 'string', title: 'string', peers: [$InputPeer, $InputPeer], );
|
||
|
```
|
||
|
|