aiogram/docs/api/methods/delete_webhook.md
2019-11-16 22:32:05 +02:00

881 B

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

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

return DeleteWebhook(...)

With specific bot

result: bool = await bot.emit(DeleteWebhook(...))

In handlers with current bot

result: bool = await DeleteWebhook(...)