Skip to main content

Revives a list of features

POST <your-unleash-url>/api/admin/projects/:projectId/revive

Authorization

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

This endpoint revives the specified features.

Request

Path Parameters

  • projectId string required

Body

required

batchFeaturesSchema

  • features string[] required

    List of feature toggle names

Responses

This response has no body.

Authorization

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

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
projectId — path required
Body required
{
"features": [
"my-feature-4",
"my-feature-5",
"my-feature-6"
]
}
curl / cURL
curl -L -X POST '<your-unleash-url>/api/admin/projects/:projectId/revive' \
-H 'Content-Type: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"features": [
"my-feature-4",
"my-feature-5",
"my-feature-6"
]
}'