Set a feature flag
PUT /v2/config/feature_flags/:name
Request
Route
PUT /v2/config/feature_flags/user_org_creation
Parameters
Name |
Description |
Valid Values |
Example Values |
name
|
The name of the feature flag
|
- user_org_creation
- app_bits_upload
- private_domain_creation
- app_scaling
- route_creation
|
|
Body
Name |
Description |
Default |
Valid Values |
Example Values |
enabled
|
The state of the feature flag.
|
|
|
|
error_message
|
The custom error message for the feature flag.
|
|
|
|
{
"enabled": true
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/config/feature_flags/user_org_creation" -d '{
"enabled": true
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTExMiIsImVtYWlsIjoiZW1haWwtOTFAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQzMjc3NDk4M30.ZStWtz3-I6fHpouTx_izkzGyeHfv17Jv4YlNUIUlIBY" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"name": "user_org_creation",
"enabled": true,
"error_message": null,
"url": "/v2/config/feature_flags/user_org_creation"
}
Headers