DeleteWebhook
The DeleteWebhook action deletes an existing webhook.
DeleteWebhook(
webhookIdn: str,
webhookType: str
)
Where:
- webhookIdn: The unique identifier of the webhook to delete.
- webhookType: The type of webhook. Either
"incoming"or"outgoing".
Example
{{DeleteWebhook(webhookIdn="old_webhook", webhookType="outgoing")}}
{{SendMessage(message="Webhook deleted.")}}The above code snippet deletes the outgoing webhook with the identifier "old_webhook."
Updated 4 days ago
