{% extends "base.html" %} {% block title %}Create API Token - PyRunner{% endblock %} {% block content %}
{% include "cpanel/_sidebar.html" %}

Create API Token

Generate a new token for API access to datastores

{% csrf_token %}
{{ form.name }} {% if form.name.help_text %}

{{ form.name.help_text }}

{% endif %} {% if form.name.errors %}

{{ form.name.errors.0 }}

{% endif %}
{{ form.datastore }} {% if form.datastore.help_text %}

{{ form.datastore.help_text }}

{% endif %} {% if form.datastore.errors %}

{{ form.datastore.errors.0 }}

{% endif %}
{{ form.expires_at }} {% if form.expires_at.help_text %}

{{ form.expires_at.help_text }}

{% endif %} {% if form.expires_at.errors %}

{{ form.expires_at.errors.0 }}

{% endif %}

Important

  • The token will only be shown once after creation
  • Store it securely - you won't be able to see it again
  • Tokens provide read-only access to datastore data
Cancel
{% endblock %}