Set environment-default strategy
Sets a default strategy for this environment. Unleash will use this strategy by default when enabling a feature flag. Use the wild card "*" for :environment to add to all environments.
Path parameters
Request body
Example request
{
"name": "flexibleRollout",
"title": "Gradual Rollout 25-Prod",
"sortOrder": 9999,
"constraints": [
{
"values": [
"1",
"2"
],
"inverted": false,
"operator": "IN",
"contextName": "appName",
"caseInsensitive": false
}
],
"variants": [
{
"name": "blue_group",
"weightType": "fix",
"stickiness": "custom.context.field",
"payload": {
"type": "json",
"value": "{\"color\": \"red\"}"
}
}
],
"segments": [
1,
2
]
}Response
createFeatureStrategySchema
Example response
{
"name": "flexibleRollout",
"title": "Gradual Rollout 25-Prod",
"sortOrder": 9999,
"constraints": [
{
"values": [
"1",
"2"
],
"inverted": false,
"operator": "IN",
"contextName": "appName",
"caseInsensitive": false
}
],
"variants": [
{
"name": "blue_group",
"weightType": "fix",
"stickiness": "custom.context.field",
"payload": {
"type": "json",
"value": "{\"color\": \"red\"}"
}
}
],
"segments": [
1,
2
]
}Changes
Changed in 2 of the 7 revisions of this API.133
- ▲
the
//request property's minLength was increased from0to1request-property-min-length-increased
- ●
added the new
SEMVER_GTEenum value to the//response property for the response statusresponse-property-enum-value-added
- ●
added the new
SEMVER_LTEenum value to the//response property for the response statusresponse-property-enum-value-added
- ○
added the new
SEMVER_GTEenum value to the request property//request-property-enum-value-added
- ○
added the new
SEMVER_LTEenum value to the request property//request-property-enum-value-added
- ▲
- ●
added the new
REGEXenum value to the//response property for the response statusresponse-property-enum-value-added
- ○
added the new
REGEXenum value to the request property//request-property-enum-value-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●