1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-03 21:57:46 +01:00
MadelineProto/old_docs/API_docs_v72/methods/account_resetNotifySettings.md

52 lines
879 B
Markdown
Raw Normal View History

2017-11-15 13:41:58 +01:00
---
title: account.resetNotifySettings
description: Reset all notification settings
2017-11-15 13:41:58 +01:00
---
## Method: account.resetNotifySettings
[Back to methods index](index.md)
Reset all notification settings
2017-11-15 13:41:58 +01:00
### Return type: [Bool](../types/Bool.md)
### Can bots use this method: **NO**
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-11-15 13:41:58 +01:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-11-15 13:41:58 +01:00
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
2017-11-15 13:41:58 +01:00
$Bool = $MadelineProto->account->resetNotifySettings();
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-11-15 13:41:58 +01:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.resetNotifySettings`
Parameters:
Or, if you're into Lua:
```
Bool = account.resetNotifySettings({})
```