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.eyJ1c2VyX2lkIjoidWFhLWlkLTE3OSIsImVtYWlsIjoiZW1haWwtMTI1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDE2NjI2MDN9.WC1N9GwJ-VEM9a3jZJx9mTTTn8e-Bg79eHp8J69C4sg
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.eyJ1c2VyX2lkIjoidWFhLWlkLTE3OSIsImVtYWlsIjoiZW1haWwtMTI1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDE2NjI2MDN9.WC1N9GwJ-VEM9a3jZJx9mTTTn8e-Bg79eHp8J69C4sg" \
	-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: 9b19a608-18fe-4b3b-a40c-8243d605b693
Content-Length: 132
X-Content-Type-Options: nosniff