action britbox_get_feature_flag { label: "getFeatureFlag" description: "Gets info whether or not a feature is enabled or disabled using a feature flag. Feature flags are set as a custom field within PM. It also supports custom feature flag data if needed. Such data can be return as well." provider: britbox method: GET path: "/itv/featureFlag/{feature}" encoding: json input: { type: "object" properties: { feature: { type: "string" } } required: ["feature"] additionalProperties: false } output: { type: "object" required: ["enabled"] properties: { enabled: { type: "boolean" description: "Is the feature enabled?" } flag: { type: "string" description: "Feature flag data." } } additionalProperties: false } }