MadelineProtoDocs/docs/API_docs/methods/messages_getAllDrafts.md
2019-05-04 12:15:39 +02:00

41 lines
821 B
Markdown

---
title: messages.getAllDrafts
description: Get all message drafts
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: messages.getAllDrafts
[Back to methods index](index.md)
Get all message drafts
### Return type: [Updates](../types/Updates.md)
### Can bots use this method: **NO**
### MadelineProto Example ([now async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
define('MADELINE_BRANCH', '');
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Updates = $MadelineProto->messages->getAllDrafts();
```
Or, if you're into Lua:
```lua
Updates = messages.getAllDrafts({})
```