MadelineProto/docs/TD_docs/methods/migrateGroupChatToChannelChat.md
2017-04-11 10:09:20 +02:00

47 lines
1.3 KiB
Markdown

---
title: migrateGroupChatToChannelChat
description: Creates new channel supergroup chat from existing group chat and send corresponding messageChatMigrateTo and messageChatMigrateFrom. Deactivates group
---
## Method: migrateGroupChatToChannelChat
[Back to methods index](index.md)
Creates new channel supergroup chat from existing group chat and send corresponding messageChatMigrateTo and messageChatMigrateFrom. Deactivates group
### Params:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|chat\_id|[InputPeer](../types/InputPeer.md) | Yes|Group chat identifier|
### Return type: [Chat](../types/Chat.md)
### Example:
```
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) { // Login as a bot
$this->bot_login($token);
}
if (isset($number)) { // Login as a user
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$Chat = $MadelineProto->migrateGroupChatToChannelChat(['chat_id' => InputPeer, ]);
```
Or, if you're into Lua:
```
Chat = migrateGroupChatToChannelChat({chat_id=InputPeer, })
```