Get UI configuration
GET/api/admin/ui-config
Retrieves the full configuration used to set up the Unleash Admin UI.
Responses
- 200
uiConfigSchema
- application/json
- Schema
- Example (from schema)
Schema
- MOD1
- variantFlagSchema
The slogan to display in the UI footer.
The enterprise-ready feature flag service.
The name of this Unleash instance. Used to build the text in the footer.
Unleash enterprise
The current version of Unleash
5.3.0-main
What kind of Unleash instance it is: Enterprise, Pro, or Open source
Enterprise
The billing model in use for this Unleash instance.
Possible values: [subscription
, pay-as-you-go
]
subscription
The URL of the Unleash instance.
https://unleash.mycompany.com/enterprise
The base URI path at which this Unleash instance is listening.
/enterprise
The URI path at which the feedback endpoint is listening.
/feedback
Whether password authentication should be disabled or not.
false
Whether this instance can send out emails or not.
true
Whether maintenance mode is currently active or not.
false
The maximum number of values that can be used in a single segment.
1000
The maximum number of segments that can be applied to a single strategy.
5
resourceLimits
object
A map of resource names and their limits.
The maximum number of values per segment allowed.
10
The maximum number of strategy segments allowed.
10
The maximum number of actions per action set allowed.
10
The maximum number of action set definitions per project allowed.
10
The maximum number of filters per action set allowed.
10
The maximum number of filter values inside an action set allowed.
10
The maximum number of signal endpoints allowed.
10
The maximum number of signal tokens per endpoint allowed.
10
The maximum number of feature environment strategies allowed.
30
The maximum number of values for a single constraint.
250
The maximum number of constraints in a single strategy.
30
The maximum number of environments allowed.
Possible values: >= 1
50
The maximum number of SDK and admin API tokens you can have at the same time. This limit applies only to server-side and client-side SDK tokens and to admin tokens. Personal access tokens are not subject to this limit. The limit applies to the total number of tokens across all projects in your organization.
2000
The maximum number of projects allowed.
Possible values: >= 1
500
The maximum number of segments allowed.
300
The maximum number of feature flags you can have at the same time. Archived flags do not count towards this limit.
Possible values: >= 1
5000
Whether to enable the Unleash network view or not.
true
The list of origins that the front-end API should accept requests from.
["*"]
flags
object
Additional (largely experimental) features that are enabled in this Unleash instance.
property name*
object
anyOf
boolean
A representation of an evaluated Unleash feature variant.
The name of the variant. Will always be disabled if enabled
is false.
blue
Whether the variant is enabled or not.
true
payload
object
Additional data associated with this variant.
The type of data contained.
Possible values: [string
, json
, csv
, number
]
json
The actual associated data
{ "starter": "squirtle" }
Whether the feature is enabled or not.
true
Use feature_enabled
instead.
true
Relevant links to use in the UI.
[{"value":"Documentation","icon":"library_books","href":"https://docs.getunleash.io/docs","title":"User documentation"},{"value":"GitHub","icon":"c_github","href":"https://github.com/Unleash/unleash","title":"Source code on GitHub"}]
The type of authentication enabled for this Unleash instance
Possible values: [open-source
, demo
, enterprise
, hosted
, custom
, none
]
enterprise
versionInfo
object
required
Detailed information about an Unleash version
current
object
required
The current version of Unleash.
The OSS version used when building this Unleash instance, represented as a git revision belonging to the main Unleash git repo
5.3.0-main
The Enterpris version of Unleash used to build this instance, represented as a git revision belonging to the Unleash Enterprise repository. Will be an empty string if no enterprise version was used,
5.3.0-main+2105.45ed03c9
latest
object
required
Information about the latest available Unleash releases. Will be an empty object if no data is available.
The latest available OSS version of Unleash
5.1.5
The latest available Enterprise version of Unleash
5.1.5
Whether the Unleash server is running the latest release (true
) or if there are updates available (false
)
true
The instance identifier of the Unleash instance
0d652a82-43db-4144-8e02-864b0b030710
Whether the OIDC configuration is set through environment variables or not.
false
Whether the SAML configuration is set through environment variables or not.
false
Whether Unleash AI is available.
false
{
"slogan": "The enterprise-ready feature flag service.",
"name": "Unleash enterprise",
"version": "5.3.0-main",
"environment": "Enterprise",
"billing": "subscription",
"unleashUrl": "https://unleash.mycompany.com/enterprise",
"baseUriPath": "/enterprise",
"feedbackUriPath": "/feedback",
"disablePasswordAuth": false,
"emailEnabled": true,
"maintenanceMode": false,
"resourceLimits": {
"segmentValues": 10,
"strategySegments": 10,
"actionSetActions": 10,
"actionSetsPerProject": 10,
"actionSetFilters": 10,
"actionSetFilterValues": 10,
"signalEndpoints": 10,
"signalTokensPerEndpoint": 10,
"featureEnvironmentStrategies": 30,
"constraintValues": 250,
"constraints": 30,
"environments": 50,
"apiTokens": 2000,
"projects": 500,
"segments": 300,
"featureFlags": 5000
},
"networkViewEnabled": true,
"frontendApiOrigins": [
"*"
],
"flags": {
"messageBanner": {
"name": "disabled",
"enabled": false
},
"featuresExportImport": true
},
"links": [
{
"value": "Documentation",
"icon": "library_books",
"href": "https://docs.getunleash.io/docs",
"title": "User documentation"
},
{
"value": "GitHub",
"icon": "c_github",
"href": "https://github.com/Unleash/unleash",
"title": "Source code on GitHub"
}
],
"authenticationType": "enterprise",
"versionInfo": {
"current": {
"oss": "5.3.0-main",
"enterprise": "5.3.0-main+2105.45ed03c9"
},
"latest": {
"oss": "5.1.5",
"enterprise": "5.1.5"
},
"isLatest": true,
"instanceId": "0d652a82-43db-4144-8e02-864b0b030710"
},
"oidcConfiguredThroughEnv": false,
"samlConfiguredThroughEnv": false,
"unleashAIAvailable": false
}