MadelineProtoDocs/old_docs/API_docs_v23/methods/messages_readHistory.md

76 lines
1.8 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: messages.readHistory
description: Mark messages as read
---
## Method: messages.readHistory
[Back to methods index](index.md)
Mark messages as read
### Parameters:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|peer|[Username, chat ID, Update, Message or InputPeer](../types/InputPeer.md) | Optional|Where to mark messages as read|
|max\_id|[int](../types/int.md) | Yes|Maximum message ID to mark as read|
2018-04-01 13:24:46 +02:00
|offset|[int](../types/int.md) | Yes|Offset|
|read\_contents|[Bool](../types/Bool.md) | Yes|Mark messages as read?|
2018-04-01 13:19:25 +02:00
2018-04-01 13:24:46 +02:00
### Return type: [messages\_AffectedHistory](../types/messages_AffectedHistory.md)
2018-04-01 13:19:25 +02:00
### 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();
2018-04-01 13:24:46 +02:00
$messages_AffectedHistory = $MadelineProto->messages->readHistory(['peer' => InputPeer, 'max_id' => int, 'offset' => int, 'read_contents' => Bool, ]);
2018-04-01 13:19:25 +02:00
```
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.readHistory`
Parameters:
peer - Json encoded InputPeer
max_id - Json encoded int
2018-04-01 13:24:46 +02:00
offset - Json encoded int
read_contents - Json encoded Bool
2018-04-01 13:19:25 +02:00
Or, if you're into Lua:
```
2018-04-01 13:24:46 +02:00
messages_AffectedHistory = messages.readHistory({peer=InputPeer, max_id=int, offset=int, read_contents=Bool, })
2018-04-01 13:19:25 +02:00
```
### Errors this method can return:
| Error | Description |
|----------|---------------|
|PEER_ID_INVALID|The provided peer id is invalid|
|Timeout|A timeout occurred while fetching data from the bot|