Lists all feature flags with their current settings for the given company

GET /v1/feature-flags/{companyId}/get

Lists all feature flags with their current settings for the given company

Path parameters

  • companyId string Required

    Company ID

Responses

  • 200 application/json

    List of feature flags

    Hide response attribute Show response attribute object
    • data array[object] Required
      Hide data attributes Show data attributes object
      • id string Required
      • name string Required
      • globallyEnabled boolean Required
      • adminEnabled boolean Required
      • companyEnabled boolean Required
GET /v1/feature-flags/{companyId}/get
curl \
 --request GET 'https://classmanager.test/v1/feature-flags/co_123123123123/get'
Response examples (200)
{
  "data": [
    {
      "id": "ff_xxx",
      "name": "shop",
      "globallyEnabled": false,
      "adminEnabled": false,
      "companyEnabled": false
    }
  ]
}