Skip to main content

Get feature lifecycle

GET <your-unleash-url>/api/admin/projects/:projectId/features/:featureName/lifecycle

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Information about the lifecycle stages of the feature.

Request

Path Parameters

  • projectId string required
  • featureName string required
Responses

featureLifecycleSchema

Schema
  • Array [
  • stage string required

    Possible values: [initial, pre-live, live, completed, archived]

    The name of the lifecycle stage that got recorded for a given feature

  • status string

    The name of the detailed status of a given stage. E.g. completed stage can be kept or discarded.

  • enteredStageAt date-time required

    The date when the feature entered a given stage

  • ]

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
projectId — path required
featureName — path required
curl / cURL
curl -L -X GET '<your-unleash-url>/api/admin/projects/:projectId/features/:featureName/lifecycle' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'