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

Webhooks

Back to Settings
{% if can_create %}

Create Webhook

{% for et in ["scan.completed", "score.changed", "drift.detected", "report.generated", "license.expiring", "member.invited"] %} {% endfor %}
{% endif %}

Endpoints ({{ webhooks|length }}/{{ webhook_limit }})

{% for wh in webhooks %}
{{ wh.url[:60] }}{% if wh.url|length > 60 %}...{% endif %}
{{ wh.status }} {% for et in wh.event_types %} {{ et }} {% endfor %}
Delivery Log
Loading...
{% endfor %} {% if not webhooks %}

No webhooks configured.

{% endif %}
{% endblock %}