MadelineProto/docs/API_docs/methods/account_updateNotifySettings.md
2016-12-21 12:40:30 +03:00

38 lines
1.0 KiB
Markdown

---
title: account_updateNotifySettings
description: account_updateNotifySettings parameters, return type and example
---
## Method: account\_updateNotifySettings
[Back to methods index](index.md)
### Parameters:
| Name | Type | Required |
|----------|:-------------:|---------:|
|peer|[InputNotifyPeer](../types/InputNotifyPeer.md) | Required|
|settings|[InputPeerNotifySettings](../types/InputPeerNotifySettings.md) | Required|
### Return type: [Bool](../types/Bool.md)
### Example:
```
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
$this->bot_login($token);
}
if (isset($number)) {
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$Bool = $MadelineProto->account->updateNotifySettings(['peer' => InputNotifyPeer, 'settings' => InputPeerNotifySettings, ]);
```