MadelineProtoDocs/old_docs/API_docs_v100/methods/messages_createChat.md

55 lines
1.5 KiB
Markdown
Raw Normal View History

2019-06-23 13:07:51 +02:00
---
title: messages.createChat
description: Create a chat (not supergroup)
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: messages.createChat
[Back to methods index](index.md)
Create a chat (not supergroup)
### Parameters:
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|users|Array of [Username, chat ID, Update, Message or InputUser](../types/InputUser.md) | The users to add to the chat | Yes|
|title|[string](../types/string.md) | The new chat's title | Yes|
### Return type: [Updates](../types/Updates.md)
### Can bots use this method: **NO**
### 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();
$Updates = $MadelineProto->messages->createChat(['users' => [InputUser, InputUser], 'title' => 'string', ]);
```
Or, if you're into Lua:
```lua
Updates = messages.createChat({users={InputUser}, title='string', })
```
2019-09-02 17:41:28 +02:00
### Errors
2019-06-23 13:07:51 +02:00
2019-09-02 17:41:28 +02:00
| Code | Type | Description |
|------|----------|---------------|
2019-09-13 17:13:55 +02:00
|400|INPUT_USER_DEACTIVATED|The specified user was deleted|
2019-09-02 17:41:28 +02:00
|400|USERS_TOO_FEW|Not enough users (to create a chat, for example)|
|403|USER_RESTRICTED|You're spamreported, you can't create channels or chats.|
2019-06-23 13:07:51 +02:00