getFeatureFlag
Retrieve a specific feature flag from an Unleash project to check its status and configuration. Provide the project ID and feature ID to get current flag details.
Instructions
Retrieve a specific feature flag from a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
featureId | Yes | ||
projectId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"featureId": {
"type": "string"
},
"projectId": {
"type": "string"
}
},
"required": [
"projectId",
"featureId"
],
"type": "object"
}