1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-03 21:17:46 +01:00
MadelineProto/old_docs/API_docs_v72/methods/messages_migrateChat.md

68 lines
1.4 KiB
Markdown
Raw Normal View History

2017-11-15 13:41:58 +01:00
---
title: messages.migrateChat
2018-03-23 16:23:49 +01:00
description: Convert chat to supergroup
2017-11-15 13:41:58 +01:00
---
## Method: messages.migrateChat
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Convert chat to supergroup
2017-11-15 13:41:58 +01:00
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat\_id|[Username, chat ID, Update, Message or InputPeer](../types/InputPeer.md) | Optional|The chat to convert|
2017-11-15 13:41:58 +01:00
### Return type: [Updates](../types/Updates.md)
### Can bots use this method: **NO**
### Errors this method can return:
| Error | Description |
|----------|---------------|
|CHAT_ID_INVALID|The provided chat id is invalid|
|PEER_ID_INVALID|The provided peer id is invalid|
|CHAT_ADMIN_REQUIRED|You must be an admin in this chat to do this|
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-11-15 13:41:58 +01:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-11-15 13:41:58 +01:00
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
2017-11-15 13:41:58 +01:00
$Updates = $MadelineProto->messages->migrateChat(['chat_id' => InputPeer, ]);
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-11-15 13:41:58 +01:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.migrateChat`
Parameters:
chat_id - Json encoded InputPeer
Or, if you're into Lua:
```
Updates = messages.migrateChat({chat_id=InputPeer, })
```