{% extends 'layout.twig' %} {% block title %}My identity — IRDB{% endblock %} {% block content %}

My identity

How the API sees the request you're making right now. Source of truth is GET /api/v1/admin/me.

{% if not api_reachable %}
Could not reach the API; values below are from your session cache.
{% endif %}
User ID
{{ user_id }}
Display name
{{ display_name }}
Email
{{ email|default('—') }}
Role
{{ role }}
Source
{{ source }}
{% include 'partials/csrf.twig' %}
{% endblock %}