deleteStrategy
Remove a strategy configuration from a feature flag in a specified environment to manage and streamline feature toggles effectively.
Instructions
Delete a strategy configuration from a feature flag in the specified environment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environment | Yes | ||
featureName | Yes | ||
projectId | Yes | ||
strategyId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"environment": {
"minLength": 1,
"type": "string"
},
"featureName": {
"maxLength": 100,
"minLength": 1,
"pattern": "^[a-z0-9-_.]+$",
"type": "string"
},
"projectId": {
"minLength": 1,
"type": "string"
},
"strategyId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"projectId",
"featureName",
"environment",
"strategyId"
],
"type": "object"
}