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"
}
]
}
]
}Changes
Changed in 1 of the 7 revisions of this API.1
- ▲
removed the required property
//from the response with the statusresponse-required-property-removed
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲