{% extends "base.html" %} {% block title %}Create an API token{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Create an API token

This token will allow API access with the same abilities as your current user, {{ request.actor.id }}

{% if token %}

Your API token

Token details
{{ token_bits|tojson(4) }}

Create another token

{% endif %} {% if errors %} {% for error in errors %}

{{ error }}

{% endfor %} {% endif %}
Restrict actions that can be performed using this token

All databases and tables

    {% for permission in all_permissions %}
  • {% endfor %}
{% for database in database_with_tables %}

All tables in "{{ database.name }}"

    {% for permission in database_permissions %}
  • {% endfor %}
{% endfor %}

Specific tables

{% for database in database_with_tables %} {% for table in database.tables %}

{{ database.name }}: {{ table.name }}

    {% for permission in resource_permissions %}
  • {% endfor %}
{% endfor %} {% endfor %}
{% endblock %}