Webhooks

All incoming deliveries to POST /webhooks/<source>, whether or not any subscription matched. Use this to discover what a provider sends before writing filters.
{% if total_deliveries %}
{{ total_deliveries }} deliver{{ 'y' if total_deliveries == 1 else 'ies' }} {% if total_unrouted %} · {{ total_unrouted }} unrouted{% endif %}
{% endif %}
{% if deliveries %}
{% for d in deliveries %} {% endfor %}
# Source Matched agents Received
{{ d.id }} {{ d.source }} {% if d.matched_agents %} {% for a in d.matched_agents %} {{ a }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} unrouted {% endif %} {{ d.received_at | time_span }}
{% else %}

No webhook deliveries yet

Point a provider at POST /webhooks/<source> and anything it sends will show up here, even without matching subscriptions.

See Examples for a trigger recipe.

{% endif %}