Skip to main content

Get archived features in project

GET /api/admin/archive/features/:projectId
deprecated

This endpoint has been deprecated and may be removed in future versions of the API.

Retrieves a list of archived features that belong to the provided project.

Request

Path Parameters

  • projectId string required
Responses

archivedFeaturesSchema

Schema
  • version integer required

    The version of the feature's schema

  • features object[]required

    A list of features

  • Array [
  • name string required

    Unique feature name

  • type string

    Type of the flag e.g. experiment, kill-switch, release, operational, permission

  • description string nullable

    Detailed description of the feature

  • project string required

    Name of the project the feature belongs to

  • stale boolean

    true if the feature is stale based on the age and feature type, otherwise false.

  • impressionData boolean

    true if the impression data collection is enabled for the feature, otherwise false.

  • createdAt date-time

    The date the feature was created

  • archivedAt date-time

    The date the feature was archived

  • lastSeenAt date-time nullable deprecated

    The date when metrics where last collected for the feature. This field was deprecated in v5, use the one in featureEnvironmentSchema

  • environments object[]deprecated

    The list of environments where the feature can be used

  • Array [
  • name string

    The name of the environment

  • lastSeenAt date-time nullable

    The date when metrics where last collected for the feature environment

  • enabled boolean

    true if the feature is enabled for the environment, otherwise false.

  • ]
  • ]
Loading...