mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
42 lines
656 B
Markdown
42 lines
656 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 | Destination |
|
||
|
|-|-|-|-|
|
||
|
| Token | --token | String | Bot token |
|
||
|
|
||
|
|
||
|
Returns: Key-Value Pair - Serialized JSON response from Telegram
|
||
|
|
||
|
```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"
|
||
|
}
|
||
|
|
||
|
```
|