09f2abcea0b5
latestOpenAPI 3.0.32026-07-22177397578.0 KBFeatureFlag
Update a feature flag configuration
Update the feature flag (using JSON Merge for patch) for the given site code and feature key.
patch/feature-flags/{siteCode}/{featureKey}
Path parameters
siteCodestring required
featureKeystring required
Request body
Example request
{
"environmentConfigurations": [
{
"rolloutRules": [
{
"release": {
"timeZone": "Europe/Paris"
}
}
]
}
]
}Response
OK
Example response
{
"environmentConfigurations": [
{
"rolloutRules": [
{
"release": {
"timeZone": "Europe/Paris"
},
"rollbackConditions": [
{
"matchValue": 50,
"visitors": 1000
}
]
}
]
}
]
}