Features
Create, update, and delete feature flags.
ποΈ Move feature to project
 **Enterprise feature**
ποΈ Validate a feature flag name.
Validates a feature flag name: checks whether the name is URL-friendly and whether a feature with the given name already exists. Returns 200 if the feature name is compliant and unused.
ποΈ Get all tags for a feature.
Retrieves all the tags for a feature name. If the feature does not exist it returns an empty list.
ποΈ Adds a tag to a feature.
Adds a tag to a feature if the feature and tag type exist in the system. The operation is idempotent, so adding an existing tag will result in a successful response.
ποΈ Updates multiple tags for a feature.
Receives a list of tags to add and a list of tags to remove that are mandatory but can be empty. All tags under addedTags are first added to the feature and then all tags under removedTags are removed from the feature.
ποΈ Removes a tag from a feature.
Removes a tag from a feature. If the feature exists but the tag does not, it returns a successful response.
ποΈ Get a feature environment
Information about the enablement status and strategies for a feature flag in specified environment.
ποΈ Disable a feature flag
Disable a feature flag in the specified environment.
ποΈ Enable a feature flag
Enable a feature flag in the specified environment.
ποΈ Bulk enable a list of features
This endpoint enables multiple feature flags.
ποΈ Bulk disable a list of features
This endpoint disables multiple feature flags.
ποΈ Get feature flag strategies
Get strategies defined for a feature flag in the specified environment.
ποΈ Add a strategy to a feature flag
Add a strategy to a feature flag in the specified environment.
ποΈ Get a strategy configuration
Get a strategy configuration for an environment in a feature flag.
ποΈ Update a strategy
Replace strategy configuration for a feature flag in the specified environment.
ποΈ Change specific properties of a strategy
Change specific properties of a strategy configuration in a feature flag.
ποΈ Delete a strategy from a feature flag
Delete a strategy configuration from a feature flag in the specified environment.
ποΈ Set strategy sort order
Set the sort order of the provided list of strategies.
ποΈ Get all features in a project
A list of all features for the specified project.