{% extends "base.html" %} {% block title %}MockPost — Webhooks{% endblock %} {% block content %}

Registered webhooks

Register webhook

Channels with webhooks back to the app: Telegram (setWebhook), WhatsApp, SMS (Twilio StatusCallback) and Stripe (signed events). Other channels only capture outbound sends. The webhook is bound to the selected app and only receives events from it.

{% for w in webhooks %} {% else %} {% endfor %}
ChannelAppTarget URLTokenCreatedActions
{{ w.channel }} {{ app_names.get(w.app_id, 'global') }} {{ w.target_url }} {{ w.token or '' }} {{ w.created_at }}
No webhooks registered.
{% endblock %}