{% extends "sentry/bases/organization.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "API Keys" %} | {{ block.super }}{% endblock %} {% block org_apikeys_nav %}active{% endblock %} {% block main %}

API keys grant access to the developer web API. If you're looking to configure a Sentry client, you'll need a client key which is available in your project settings.

{% if key_list %} {% for key in key_list %} {% endfor %}
{{ key.label }}
{{ key.key }}
Edit Key
{% csrf_token %}
{% else %}
There are no API keys for this organization.
{% endif %} {% endblock %}