Get all feature flags
GET /v2/config/feature_flags
Request
Route
GET /v2/config/feature_flags
Headers
cURL
curl "https://api.[your-domain.com]/v2/config/feature_flags" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM1MiIsImVtYWlsIjoiZW1haWwtMjU0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDk1MzE1MzR9.rJZPJPsTagVnyo43rzQ7AK5gQPzId_fKhaQ5hv2tTPQ" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
[
{
"name": "user_org_creation",
"enabled": false,
"error_message": null,
"url": "/v2/config/feature_flags/user_org_creation"
},
{
"name": "private_domain_creation",
"enabled": false,
"error_message": "foobar",
"url": "/v2/config/feature_flags/private_domain_creation"
},
{
"name": "app_bits_upload",
"enabled": true,
"error_message": null,
"url": "/v2/config/feature_flags/app_bits_upload"
},
{
"name": "app_scaling",
"enabled": true,
"error_message": null,
"url": "/v2/config/feature_flags/app_scaling"
},
{
"name": "route_creation",
"enabled": true,
"error_message": null,
"url": "/v2/config/feature_flags/route_creation"
},
{
"name": "service_instance_creation",
"enabled": true,
"error_message": null,
"url": "/v2/config/feature_flags/service_instance_creation"
},
{
"name": "diego_docker",
"enabled": false,
"error_message": null,
"url": "/v2/config/feature_flags/diego_docker"
},
{
"name": "set_roles_by_username",
"enabled": true,
"error_message": null,
"url": "/v2/config/feature_flags/set_roles_by_username"
},
{
"name": "unset_roles_by_username",
"enabled": true,
"error_message": null,
"url": "/v2/config/feature_flags/unset_roles_by_username"
}
]
Headers