Lists all feature flags with their current settings for the logged-in company
GET
/v1/feature-flags/
curl \
--request GET 'https://localhost/v1/feature-flags/'
Response examples (200)
{
"data": [
{
"id": "ff_xxx",
"name": "shop",
"globallyEnabled": false,
"adminEnabled": false,
"companyEnabled": false
}
]
}