---
title: "Features"
description: "With the features.conf you can control which Enterprise API features are enabled. They are managed via the feature manager."
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/features
generated: 2026-07-20
---
# Features

With the `_features.conf` you can control which Enterprise API features are enabled. They are managed via
the [feature manager](https://docs.walt.id/enterprise-stack/setup/configurations/feature-manager.md).

## Available Features

- `account-registration` - Enable or disable account registration
- `admin` - Administration endpoints
- `auth` - Configure authentication
- `authservice` - Enables user authentication
- `data-retention` - Enable or disable data retention
- `database` - Configure database
- `debug-endpoints` - Enables various debug endpoints
- `dev-mode` - Development mode
- `enterprise` - Enterprise base
- `feature-flag-information-endpoint` - Enables endpoints related to showing information about available features on this service instance
- `healthchecks` - Enables healthcheck endpoints
- `issuer2` - Enable or disable the beta issuer2 service
- `oidc-bridge` - Enable or disable the OIDC Bridge Service for VC-based IAM integration
- `openapi` - Enables openapi endpoints
- `organization-creation` - Enable or disable organization creation
- `persistence` - Storage
- `superadmin-registration` - Enable or disable superadmin registration
- `telemetry` - Enable or disable telemetry
- `trust-registry` - Enable or disable the Trust Registry Service
- `web` - Web service
- `x509` - Enable or disable the X.509 Certificate Service & Store services
- `transaction-data-profiles` - Enable or disable the Enterprise Verifier2 transaction-data profile registry and discovery endpoint

### Example Setup
```editorconfig[_features.conf]
enabledFeatures = [
    admin // adds routes for administration of globals
    dev-mode // adds routes useful for development
    superadmin-registration // allows registering superadmins
]
disabledFeatures = [
    # debug-endpoints
    # account-registration
]
```
