MadelineProtoDocs/old_docs/API_docs_v81/methods/messages_reorderPinnedDialogs.md

54 lines
1.4 KiB
Markdown
Raw Normal View History

2018-07-12 20:24:55 +02:00
---
title: messages.reorderPinnedDialogs
description: Reorder pinned dialogs
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: messages.reorderPinnedDialogs
[Back to methods index](index.md)
Reorder pinned dialogs
### Parameters:
2018-08-29 11:18:25 +02:00
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|force|[Bool](../types/Bool.md) | Force reordering | Optional|
2018-08-30 20:01:58 +02:00
|order|Array of [Username, chat ID, Update, Message or InputDialogPeer](../types/InputDialogPeer.md) | New order | Yes|
2018-07-12 20:24:55 +02:00
### Return type: [Bool](../types/Bool.md)
### Can bots use this method: **NO**
2019-05-04 12:15:39 +02:00
### MadelineProto Example ([now async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
2018-07-12 20:24:55 +02:00
```php
2018-07-12 20:24:55 +02:00
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
2019-03-12 13:25:41 +01:00
define('MADELINE_BRANCH', '');
2018-07-12 20:24:55 +02:00
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Bool = $MadelineProto->messages->reorderPinnedDialogs(['force' => Bool, 'order' => [InputDialogPeer, InputDialogPeer], ]);
```
Or, if you're into Lua:
```lua
2018-07-12 20:24:55 +02:00
Bool = messages.reorderPinnedDialogs({force=Bool, order={InputDialogPeer}, })
```
### Errors this method can return:
| Error | Description |
|----------|---------------|
|PEER_ID_INVALID|The provided peer id is invalid|