Webhook Management

{{ current_user.organization_name }}
{{ current_user.email }} Logout

Webhooks

{% if webhooks %} {% for wh in webhooks %} {% endfor %}
Name URL Events Status Failures Actions
{{ wh.name }} {{ wh.url }}
{% for event in wh.events[:3] %} {{ event.split('.')[1] }} {% endfor %} {% if wh.events|length > 3 %} +{{ wh.events|length - 3 }} {% endif %}
{{ 'Active' if wh.is_active else 'Inactive' }} {% if wh.failure_count > 0 %} {{ wh.failure_count }} {% else %} 0 {% endif %}
{% else %}

No webhooks configured.

Click "Add Webhook" to receive notifications for sync events.

{% endif %}