Skip to main content

Updating Flags (Experimental)

These experimental endpoints let you update feature flag values and segment overrides via the Admin API. They're meant as a simpler alternative to the current endpoints, which were designed with our dashboard user experience in mind.

caution

These endpoints are experimental and may change without notice. They cannot be used when change requests are enabled.

We're evaluating two approaches for updating flags — Option A (one change per request) and Option B (everything in one request). Each scenario below shows both. Try them and let us know which works better for you.

Common details:

  • Identify features by name or id (pick one, not both).
  • All endpoints return 204 No Content on success.
  • Values are passed as a value object with type and value (always a string):
TypeExample
string{"type": "string", "value": "hello"}
integer{"type": "integer", "value": "42"}
boolean{"type": "boolean", "value": "true"}

Toggle a flag on or off

The simplest case — flip a feature flag in an environment.

Option APOST /api/experiments/environments/{environment_key}/update-flag-v1/

curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v1/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "maintenance_mode"},
"enabled": true,
"value": {"type": "boolean", "value": "true"}
}'

Option BPOST /api/experiments/environments/{environment_key}/update-flag-v2/

curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v2/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "maintenance_mode"},
"environment_default": {
"enabled": true,
"value": {"type": "boolean", "value": "true"}
}
}'

Update a feature value

Change a feature's value — for example, setting a rate limit.

Option APOST /api/experiments/environments/{environment_key}/update-flag-v1/

curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v1/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "api_rate_limit"},
"enabled": true,
"value": {"type": "integer", "value": "1000"}
}'

Option BPOST /api/experiments/environments/{environment_key}/update-flag-v2/

curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v2/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "api_rate_limit"},
"environment_default": {
"enabled": true,
"value": {"type": "integer", "value": "1000"}
}
}'

Roll out a feature to a segment

Enable a feature for a specific segment (e.g. beta users) while keeping it off for everyone else.

Option APOST /api/experiments/environments/{environment_key}/update-flag-v1/

curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v1/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "new_checkout"},
"segment": {"id": 456},
"enabled": true,
"value": {"type": "boolean", "value": "true"}
}'

Option BPOST /api/experiments/environments/{environment_key}/update-flag-v2/

curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v2/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "new_checkout"},
"environment_default": {
"enabled": false,
"value": {"type": "boolean", "value": "false"}
},
"segment_overrides": [
{
"segment_id": 456,
"enabled": true,
"value": {"type": "boolean", "value": "true"}
}
]
}'

The priority field on segment overrides is optional. Omit it to add at the lowest priority. The lowest number has the highest priority.


Configure multiple segment overrides

Set different values per segment — for example, pricing tiers.

Option APOST /api/experiments/environments/{environment_key}/update-flag-v1/

# Set environment default
curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v1/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "pricing_tier"},
"enabled": true,
"value": {"type": "string", "value": "standard"}
}'

# Set override for segment "Enterprise" (higher priority)
curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v1/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "pricing_tier"},
"segment": {"id": 101, "priority": 1},
"enabled": true,
"value": {"type": "string", "value": "enterprise"}
}'

# Set override for segment "Premium"
curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v1/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "pricing_tier"},
"segment": {"id": 202, "priority": 2},
"enabled": true,
"value": {"type": "string", "value": "premium"}
}'

Option BPOST /api/experiments/environments/{environment_key}/update-flag-v2/

curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v2/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "pricing_tier"},
"environment_default": {
"enabled": true,
"value": {"type": "string", "value": "standard"}
},
"segment_overrides": [
{
"segment_id": 101,
"priority": 1,
"enabled": true,
"value": {"type": "string", "value": "enterprise"}
},
{
"segment_id": 202,
"priority": 2,
"enabled": true,
"value": {"type": "string", "value": "premium"}
}
]
}'

Configure A/B/n experiments (multivariate flags)

Set up multivariate flags and customise weights per segment.

Multivariate options can only be added, deleted, or updated in the environment. The multivariate_feature_state_values list is absolute: omitting an option means deleting it.

Segment overrides can only re-weight existing variants. They cannot update the variant value, or add or delete multivariate options.

Identify a variant by its key — an optional, human-readable slug, unique per feature, with control reserved — or by its id, passed as multivariate_feature_option. Pick one, not both. A keyed item whose key is not on the feature yet creates the variant, so a whole experiment can be configured without ever fetching variant ids. Variants created without a key can only be identified by id.

Option APOST /api/experiments/environments/{environment_key}/update-flag-v1/

# First, configure multivariate flags in the environment
curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v1/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "new_payment_gateway_experiment"},
"enabled": true,
"value": {"type": "string", "value": "default"},
"multivariate_feature_state_values": [
{
"key": "sharp-payments",
"percentage_allocation": 20,
"value": {"type": "string", "value": "Sharp Payments"}
},
{
"key": "gemstone-express",
"percentage_allocation": 10,
"value": {"type": "string", "value": "Gemstone Express"}
}
]
}'

# You can update (add, delete, re-weight) multivariate options in the environment
curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v1/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "new_payment_gateway_experiment"},
"multivariate_feature_state_values": [
{
"key": "sharp-payments",
"percentage_allocation": 20,
"value": {"type": "string", "value": "Sharp Payments"}
},
{
"key": "e-z-pay",
"percentage_allocation": 5,
"value": {"type": "string", "value": "E-Z Pay"}
}
]
}'

# Variants without a key are identified by their `id`, fetched via the admin API
curl -X GET '/api/v1/projects/{project_id}/features/{feature_id}/mv-options/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json'

# Segment overrides can re-weight multivariate options (but can't add, delete, or update values)
curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v1/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "new_payment_gateway_experiment"},
"segment": {"id": 101, "priority": 1},
"multivariate_feature_state_values": [
{"key": "sharp-payments", "percentage_allocation": 0},
{"multivariate_feature_option": 993, "percentage_allocation": 100}
]
}'

Option BPOST /api/experiments/environments/{environment_key}/update-flag-v2/

# Configure a whole experiment — variants and their per-segment weights — in a single request.
curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v2/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "new_payment_gateway_experiment"},
"environment_default": {
"enabled": true,
"value": {"type": "string", "value": "default"},
"multivariate_feature_state_values": [
{
"key": "sharp-payments",
"percentage_allocation": 20,
"value": {"type": "string", "value": "Sharp Payments"}
},
{
"key": "gemstone-express",
"percentage_allocation": 10,
"value": {"type": "string", "value": "Gemstone Express"}
}
]
},
"segment_overrides": [
{
"segment_id": 101,
"priority": 1,
"multivariate_feature_state_values": [
{"key": "sharp-payments", "percentage_allocation": 100},
{"key": "gemstone-express", "percentage_allocation": 0}
]
},
{
"segment_id": 202,
"priority": 2,
"multivariate_feature_state_values": [
{"key": "sharp-payments", "percentage_allocation": 0},
{"key": "gemstone-express", "percentage_allocation": 100}
]
}
]
}'

# Variants without a key are identified by their `id`, fetched via the admin API
curl -X GET '/api/v1/projects/{project_id}/features/{feature_id}/mv-options/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json'

# Segment overrides can re-weight multivariate options (but can't add, delete, or update values)
curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/update-flag-v2/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "new_payment_gateway_experiment"},
"segment_overrides": [
{
"segment_id": 101,
"multivariate_feature_state_values": [
{"key": "sharp-payments", "percentage_allocation": 50},
{"multivariate_feature_option": 992, "percentage_allocation": 50}
]
}
]
}'

Remove a segment override

A separate endpoint for removing a segment override from a feature:

POST /api/experiments/environments/{environment_key}/delete-segment-override/

curl -X POST 'https://api.flagsmith.com/api/experiments/environments/{environment_key}/delete-segment-override/' \
-H 'Authorization: Api-Key <your_token>' \
-H 'Content-Type: application/json' \
-d '{
"feature": {"name": "pricing_tier"},
"segment": {"id": 202}
}'