{% extends "withnav_template.html" %} {% from "components/table.html" import list_table, field, hidden_field_heading %} {% from "components/api-key.html" import api_key %} {% from "components/banner.html" import banner_wrapper %} {% block page_title %} API integration – GOV.UK Notify {% 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', 'notification_type', 'created_at', 'updated_at', 'sent_at', 'status' ] %}
{{ key }}:
{{ notification[key] }}
{% endfor %}
{% endfor %} {% if api_notifications.notifications %}
{% if api_notifications.links %}

Only showing the first 50 messages.

{% endif %}

Notify deletes messages after 7 days.

{% endif %}
{% endblock %}