Skip to main content

Update project enterprise settings

PUT <your-unleash-url>/api/admin/projects/:projectId/settings

Authorization

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

Update project enterprise settings with new values. Any fields not provided are ignored.

Request

Path Parameters

  • projectId string required

Body

required

updateProjectEnterpriseSettingsSchema

  • mode string

    Possible values: [open, protected, private]

    A mode of the project affecting what actions are possible in this project

  • featureNaming object

    Create a feature naming pattern

  • pattern string nullable required

    A JavaScript regular expression pattern, without the start and end delimiters. Optional flags are not allowed.

  • example string nullable

    An example of a feature name that matches the pattern. Must itself match the pattern supplied.

  • description string nullable

    A description of the pattern in a human-readable format. Will be shown to users when they create a new feature flag.

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
{
"mode": "open",
"featureNaming": {
"pattern": "^[A-Za-z]+.[A-Za-z]+.[A-Za-z0-9-]+$",
"example": "dx.feature1.1-135",
"description": "<project>.<featureName>.<ticket>\n\nThe flag name should contain the project name, the feature name, and the ticket number, each separated by a dot."
}
}
curl / cURL
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/settings' \
-H 'Content-Type: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"mode": "open",
"featureNaming": {
"pattern": "^[A-Za-z]+.[A-Za-z]+.[A-Za-z0-9-]+$",
"example": "dx.feature1.1-135",
"description": "<project>.<featureName>.<ticket>\n\nThe flag name should contain the project name, the feature name, and the ticket number, each separated by a dot."
}
}'