get_single_feature_flag
Retrieve a specific feature flag from the GrowthBook API by providing its unique ID and project details, enabling targeted feature management.
Instructions
Fetches a specific feature flag from the GrowthBook API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the feature flag | |
project | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the feature flag",
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}