Home
Version 3
Feature Flags API

Feature Flags API

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.
  • true
  • false
error_message The custom error message for the feature flag.
  • error message
{
  "enabled": true
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTExMiIsImVtYWlsIjoiZW1haWwtOTFAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQzMjc3NDk4M30.ZStWtz3-I6fHpouTx_izkzGyeHfv17Jv4YlNUIUlIBY
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

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

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 275b0345-ac38-4871-aa89-fe66abc75c7a
Content-Length: 132
X-Content-Type-Options: nosniff