1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-03 13:22:19 +02:00
Vitaly the Alpaca (bot) 4a9fd2c336 Main build (Jenkins)
2024-09-24 11:38:18 +03:00

44 lines
730 B
Markdown

---
sidebar_position: 4
---
# Delete webhook
Deletes the bot event handler URL for webhook operation
`Function DeleteWebhook(Val Token) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Token | --token | String | Bot token |
Returns: Map Of KeyAndValue - Serialized JSON response from Telegram
<br/>
```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"
}
```