{% extends "withnav_template.html" %} {% from "components/table.html" import list_table, field, hidden_field_heading %} {% from "components/banner.html" import banner_wrapper %} {% block service_page_title %} API integration {% endblock %} {% block maincolumn_content %}

API integration

Message log

Refresh
{% if not api_notifications.notifications %}

When you send messages via the API they’ll appear here.

Notify deletes messages after 7 days.

{% endif %} {% for notification in api_notifications.notifications %}

{{ notification.to }} {{notification.key_name}}

{% for key in [ 'id', 'client_reference', 'notification_type', 'created_at', 'updated_at', 'sent_at', 'status' ] %} {% if notification[key] %}
{{ key }}:
{{ notification[key] }}
{% endif %} {% endfor %} View {{ 1|message_count_label(notification.template.template_type, suffix='') }}
{% endfor %} {% if api_notifications.notifications %}
{% if api_notifications.notifications|length == 50 %}

Only showing the first 50 messages.

{% endif %}

Notify deletes messages after 7 days.

{% endif %}
{% endblock %}