{% extends "accounts/_section.html" %} {% block title %}{{user.username}} - Manage API application permissions{% endblock %} {% block section_content %}

Manage API application permissions

{% if tokens or grants %}

This list shows all the API applications to which you have granted permission to access your data.
Granting permission to access your data means that you allow the application to act on your behealf inside Freesound.

{% if show_expiration_date %}{% endif %} {% for token in tokens %} {% if show_expiration_date %} {% endif %} {% endfor %} {% if grants %} {% for grant in grants %} {% if show_expiration_date %} {% endif %} {% endfor %} {% endif %}
Application nameDeveloperClient idExpiration date
{{ token.client_name }} {{ token.developer }} {{ token.client_id }} {{ token.expiration_date }} Revoke permission
{{ grant.client_name }} {{ grant.developer }} {{ grant.client_id }} {{ grant.expiration_date }} Revoke permission*
{% if grants %}

* That permission you granted is not yet active because the application still needs to complete the activation process.

{% endif %}

If you have granted permissions to API applications that do not appear in this list, the permissions will have
probably expired or have been canceled by the API application.

{% else %}

You have not granted any permission to any API application.

If you have granted permissions to API applications that do not appear here, the permissions will have
probably expired or have been canceled by the API application.

{% endif %} {% endblock %}