1.2 KiB
1.2 KiB
title | description | image | redirect_from |
---|---|---|---|
messages.deactivateChat | Deactivate chat | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/messages_deactivateChat.html |
Method: messages.deactivateChat
Deactivate chat
Parameters:
Name | Type | Description | Required |
---|---|---|---|
chat_id | Username, chat ID, Update, Message or InputPeer | The chat to deactivate | Optional |
enabled | Bool | Activate or deactivate? | Yes |
Return type: Updates
Can bots use this method: YES
MadelineProto Example (now async for huge speed and parallelism!):
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();
$Updates = $MadelineProto->messages->deactivateChat(['chat_id' => InputPeer, 'enabled' => Bool, ]);
Or, if you're into Lua:
Updates = messages.deactivateChat({chat_id=InputPeer, enabled=Bool, })