{% extends "django_meta_whatsapp/base.html" %} {% block title %}API Keys{% endblock %} {% block page_title %}API Keys{% endblock %} {% block topbar_actions %} Create Key {% endblock %} {% block content %}
Pass the key in your requests as the X-API-Key header or ?api_key= query param.
{% for key in api_keys %} {% empty %} {% endfor %}
Name Key Status Created Actions
{{ key.name }} {{ key.key }} {% if key.is_active %}Active {% else %}Revoked{% endif %} {{ key.created_at|date:"d M Y" }}
No API keys yet.
{% endblock %}