📋

Webhook Logs

{{ total_count }} webhook{{ 's' if total_count != 1 else '' }} received

{% if total_count > 0 and logs %}
{% for log in logs %}
#{{ log.id }} {{ log.metadata.ip }}
{{ log.timestamp.display }}
{% if log.parsed_body %}
                {{ log.parsed_body | tojson(indent=2) }}
            
{% else %}
                {{ log.body }}
            
{% endif %} {% if log.matches %}

Search matches:

{% for match in log.matches %}
{{ match.term }}: {{ match.context }}
{% endfor %}
{% endif %}
{% endfor %}
{% if has_more %}
{% endif %} {% else %}
📭

No webhooks yet

Send a test webhook to get started!

{% endif %}