mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 18:01:04 +00:00
893 B
893 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.methods import DeleteWebhookfrom aiogram.api.methods import DeleteWebhookfrom aiogram.api.methods.delete_webhook import DeleteWebhook
In handlers with current bot
result: bool = await DeleteWebhook(...)
With specific bot
result: bool = await bot(DeleteWebhook(...))
As reply into Webhook in handler
return DeleteWebhook(...)