{% 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 service_page_title %} API keys {% 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' %} Live – sends to anyone {% elif item.key_type == 'team' %} Team and whitelist – limits who you can send to {% elif item.key_type == 'test' %} 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 %}