62 lines
1.2 KiB
Markdown
62 lines
1.2 KiB
Markdown
|
---
|
||
|
title: messages.reorderStickerSets
|
||
|
description: Reorder sticker sets
|
||
|
---
|
||
|
## 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}, })
|
||
|
```
|
||
|
|