---
title: "Activate Super Admins Accounts"
description: "Using the super-admin-token defined in the superadmin-registration.conf file, we can activate the super admin account."
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/administration/access-and-permissions/super-admin/activate
generated: 2026-07-08
---
# Activate Super Admins Accounts

Using the super-admin-token defined in  the `superadmin-registration.conf`
file, we can activate the super admin account.

## Activate Super Admin

**Option: CURL**

Endpoint:`/v1/superadmin/create-by-token` | [API Reference](https://enterprise.sandbox.walt.id/swagger/index.html#/Administration%20%2F%20Superadmin/post_v1_superadmin_create_by_token)

**Example Request**

```bash
curl -X 'POST' \
  'https://enterprise.sandbox.walt.id/v1/superadmin/create-by-token' \
  -H 'accept: */*' \
  -H 'Content-Type: text/plain' \
  -d '<super-admin-token>'
```

**Body**

```text
<super-admin-token>
```

**Body Content**
<br/>
Please provide the super-admin-token in the body without any quotation marks.
Use the token map key from `superadmin-registration.conf` as value (eg. `super-admin-token`).

---

**Response Codes**

- `200` - Super admin account activated successfully
