{% extends "base.html" %} {% block title %}Webhook: {{ subscription.subscription_name }} - LSMC Hub{% endblock %} {% block content %}
{{ revision.url }}
{{ subscription.created_at | format_dt(user_preferences) }}
{{ revision.timeout_seconds }} seconds
{{ revision.max_retries }}
{{ revision.headers|tojson(indent=2) }}
{{ revision.note }}
| Event Type | Attempt | Status | Delivered At | Error |
|---|---|---|---|---|
| {{ log.event_type }} | {{ log.attempt_number }} | {% if log.http_status %} {% if log.http_status >= 200 and log.http_status < 300 %} {{ log.http_status }} {% else %} {{ log.http_status }} {% endif %} {% else %} Failed {% endif %} | {{ log.delivered_at | format_dt(user_preferences) }} | {{ log.error_message[:50] if log.error_message else '-' }} |
No delivery logs yet.
{% endif %}