Client Http API
This api can be used by your applications to get the latest feature values, it is recommended you use one of the SDKs over the HTTP API directly.
Query string
audiences
- CSV of the audiences you want to get the effective feature values forHeaders
x-environment-key
- The FeaureBoard environment keyResponse
Array<{
featureKey: string
value: string | boolean | number
}>
Example
GET /effective?audiences=plan-trial,role-admin
[
{ "featureKey": "permission-user-write", "value": true },
{ "featureKey": "limit-users", "value": 5 }
]
Last modified 1yr ago