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

CURL

Endpoint:/v1/superadmin/create-by-token | API Reference

Example Request

curl -X 'POST' \
  'https://enterprise.sandbox.walt.id/v1/superadmin/create-by-token' \
  -H 'accept: */*' \
  -H 'Content-Type: application/json' \
  -d '{
  "token": "superadmin-token"
}'

Body

{
  "token": "superadmin-token"
}

Body Content
Please provide the super-admin-token in the body as shown in the example. Use the token map key from superadmin-registration.conf as value (eg. super-admin-token).


Response Codes

  • 200 - Super admin account activated successfully
Last updated on August 18, 2026