v4
latestOpenAPI 3.0.02026-08-04109113304.5 KBFeatures
Update a Feature
Update a feature by ID.
patch/features/{feature_id}
Path parameters
feature_idinteger required
The unique identifier for the Feature
Request body
Example request
{
"key": "new_checkout_page",
"name": "the checkout feature",
"variables": [
{
"default_value": "0.05"
}
]
}Response
Successfully updated the Feature
Example response
{
"key": "new_checkout_page",
"name": "the checkout feature",
"variables": [
{
"default_value": "0.05",
"type": "double"
}
]
}