---
title: "Super Admin Registration"
description: "Using the superadmin-registration.conf file you can provide a list of super admin registration tokens mapped to an email and password. The super admin can be activated as explained here and login as shown here."
stack: "Enterprise Stack (commercial) — version 0.21.0"
stack_version: "0.21.0"
stack_comparison: https://docs.walt.id/community-vs-enterprise.md
canonical_url: https://docs.walt.id/enterprise-stack/setup/configurations/config-files/superadmin-registration
generated: 2026-07-20
---
# Super Admin Registration

Using the `superadmin-registration.conf` file you can provide a list of super admin registration tokens mapped to an
email and password. The super admin can be activated as
explained [here](https://docs.walt.id/enterprise-stack/administration/access-and-permissions/super-admin/activate.md) and login as
shown [here](https://docs.walt.id/enterprise-stack/administration/access-and-permissions/super-admin/authenticate.md).

```[superadmin-registration.conf]
tokens = {
    "token-according-super-admin-conf": {
        expiration = "2029-01-01T00:00:00Z",  # Token has to be used by this expiration date
        account = {
            type = "email"
            identifier = { email = "superadmin@walt.id" }
            data = { password = "pw-according-super-admin-conf" }
        }
    }
}
```
