getFeatureFlag
Retrieve a specific feature flag by ID to manage feature rollouts and toggle functionality in your application based on environment and version requirements.
Instructions
Get a specific feature flag by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environmentId | No | Environment ID (uses default if not provided) | |
featureVersion | No | Specific version of the feature to retrieve | |
id | Yes | The ID of the feature flag to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"environmentId": {
"description": "Environment ID (uses default if not provided)",
"type": "string"
},
"featureVersion": {
"description": "Specific version of the feature to retrieve",
"type": "number"
},
"id": {
"description": "The ID of the feature flag to retrieve",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}