MadelineProtoDocs/docs/API_docs/methods/messages_reorderStickerSets.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

63 lines
1.3 KiB
Markdown

---
title: messages.reorderStickerSets
description: Reorder sticker sets
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: messages.reorderStickerSets
[Back to methods index](index.md)
Reorder sticker sets
### Parameters:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|masks|[Bool](../types/Bool.md) | Optional|Reorder masks?|
|order|Array of [long](../types/long.md) | Yes|The order|
### Return type: [Bool](../types/Bool.md)
### Can bots use this method: **NO**
### MadelineProto Example:
```
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();
$Bool = $MadelineProto->messages->reorderStickerSets(['masks' => Bool, 'order' => [long, long], ]);
```
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.reorderStickerSets`
Parameters:
masks - Json encoded Bool
order - Json encoded array of long
Or, if you're into Lua:
```
Bool = messages.reorderStickerSets({masks=Bool, order={long}, })
```