v7

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

Mark features as stale / not stale

This endpoint marks the provided list of features as either stale or not stale depending on the request body you send. Any provided features that don't exist are ignored.

post/api/admin/projects/{projectId}/stale

Path parameters

projectIdstring required

Request body

featuresstring[] required

A list of features to mark as (not) stale

staleboolean required

Whether the list of features should be marked as stale or not stale. If true, the features will be marked as stale. If false, the features will be marked as not stale.

Example request

{
  "features": [
    "my-feature-1",
    "my-feature-2",
    "my-feature-3"
  ],
  "stale": true
}

Response

This response has no body.