{% extends "console_page.html" %} {% block console_content %}

API Keys

API keys provide access to the Gobii API. Keep them secure.

{% if api_key_context.type == 'organization' %}

These keys authenticate requests on behalf of {{ api_key_context.organization.name }}.

{% if not can_manage_api_keys %}
Read-only access — contact an owner or admin to create or manage keys.
{% endif %} {% endif %} {% if not email_verified %}
Please verify your email address to create API keys. Sent!
{% endif %}
{% if can_manage_api_keys and email_verified %} {% endif %}
{% if api_key_context.type == 'organization' %} {% endif %} {% for key in api_keys %} {% include "partials/_api_key_row.html" with key=key api_key_context=api_key_context can_manage_api_keys=can_manage_api_keys %} {% empty %} {% endfor %}
NameCreated ByCreated Last Used Status Actions
No API keys found.{% if can_manage_api_keys and email_verified %} Create one to get started.{% endif %}
{% include "partials/_delete_confirm_modal.html" %} {% include "partials/_revoke_confirm_modal.html" %}
{% endblock %}