v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Features

Get all features in a project

A list of all features for the specified project.

get/api/admin/projects/{projectId}/features

Path parameters

projectIdstring required

Response

projectFeaturesSchema

versioninteger required

The version of the feature's schema

Example response

{
  "features": [
    {
      "name": "disable-comments",
      "type": "kill-switch",
      "description": "Controls disabling of the comments section in case of an incident",
      "favorite": true,
      "createdAt": "2023-01-28T15:21:39.975Z",
      "environments": [
        {
          "name": "my-dev-env",
          "type": "development",
          "enabled": true,
          "sortOrder": 3,
          "lastSeenAt": "2023-01-28T16:21:39.975Z"
        }
      ],
      "tags": [
        {
          "value": "a-tag-value",
          "type": "simple",
          "color": "#FFFFFF"
        }
      ]
    }
  ]
}