09f2abcea0b5
latestOpenAPI 3.0.32026-07-22177397578.0 KBFeatureFlag
Update a single rule by id
Updates a single rollout rule using JSON Merge Patch by its rule id. Note: If you need to modify an element within an array, the entire array — including all its fields — must be provided, as partial updates to array elements are not supported.
patch/feature-flags/rules/{ruleId}
Path parameters
ruleIdinteger 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
}
]
}
]
}
]
}