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
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"
}
]
}
]
}