{% 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/page-footer.html" import page_footer %} {% block page_title %} API integration – GOV.UK Notify {% endblock %} {% block maincolumn_content %}

API keys

Create an API key
{% call(item, row_number) list_table( keys, empty_message="You haven’t created any API keys yet", caption="API keys", caption_visible=false, field_headings=[ 'API keys', 'Action' ], field_headings_visible=False ) %} {% call field() %}
{{ item.name }} {% if item.key_type == 'normal' %} Normal {% elif item.key_type == 'team' %} Sends to anyone on your whitelist {% elif item.key_type == 'test' %} Pretends to send messages {% endif %}
{% endcall %} {% if item.expiry_date %} {% call field(align='right') %} Revoked {{ item.expiry_date|format_datetime_short }} {% endcall %} {% else %} {% call field(align='right', status='error') %} Revoke {% endcall %} {% endif %} {% endcall %} {{ page_footer( secondary_link=url_for('.api_integration', service_id=current_service.id), secondary_link_text='Back to API integration' ) }} {% endblock %}