aiogram/docs/api/methods/delete_webhook.md

53 lines
881 B
Markdown
Raw Normal View History

# deleteWebhook
## Description
Use this method to remove webhook integration if you decide to switch back to getUpdates. Returns True on success. Requires no parameters.
## Response
Type: `#!python3 bool`
Description: Returns True on success.
## Usage
### As bot method bot
```python3
result: bool = await bot.delete_webhook(...)
```
### Method as object
Imports:
- `from aiogram.types import DeleteWebhook`
- `from aiogram.api.types import DeleteWebhook`
- `from aiogram.api.types.delete_webhook import DeleteWebhook`
#### As reply into Webhook
```python3
return DeleteWebhook(...)
```
#### With specific bot
```python3
result: bool = await bot.emit(DeleteWebhook(...))
```
#### In handlers with current bot
```python3
result: bool = await DeleteWebhook(...)
```
## Related pages:
- [Official documentation](https://core.telegram.org/bots/api#deletewebhook)