1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Telegram/Data-retrieval-and-settings/Delete-webhook.md

46 lines
719 B
Markdown
Raw Normal View History

---
sidebar_position: 4
---
# Delete webhook
Deletes the bot event handler URL for webhook operation
<br/>
2024-07-10 12:58:29 +02:00
`Function DeleteWebhook(Val Token) Export`
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Token | --token | String | Bot token |
Returns: Map Of KeyAndValue - Serialized JSON response from Telegram
2024-07-10 13:05:58 +02:00
<br/>
2024-07-10 12:58:29 +02:00
```bsl title="Code example"
Token = "6129457865:AAFyzNYOAFbu...";
Result = OPI_Telegram.DeleteWebhook(Token);
```
```sh title="CLI command example"
oint telegram DeleteWebhook --token "6129457865:AAFyzNYOAFbu..."
```
```json title="Result"
{
"ok": true,
"result": true,
"description": "Webhook was deleted"
}
```