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