Skip to main content
PUT
/
feature-flags
/
{name}
Update Feature Flag
curl --request PUT \
  --url https://use.hoop.dev/api/feature-flags/{name} \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": true
}
'
{
  "components": [
    "gateway",
    "agent"
  ],
  "default": false,
  "description": "New IronRDP-based proxy",
  "enabled": false,
  "name": "experimental.rdp_v2",
  "stability": "experimental"
}

Documentation Index

Fetch the complete documentation index at: https://mintlify.hoop.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

name
string
required

Feature flag name

Body

application/json

The request body

enabled
boolean

Whether the feature flag should be enabled

Response

OK

components
string[]

Components affected by this flag

Example:
["gateway", "agent"]
default
boolean

Default value when not explicitly set

Example:

false

description
string

Human-readable description

Example:

"New IronRDP-based proxy"

enabled
boolean

Current effective value for the organization

Example:

false

name
string

The feature flag name

Example:

"experimental.rdp_v2"

stability
enum<string>

Stability level

Available options:
experimental,
beta
Example:

"experimental"