curl --request PUT \
--url http://localhost:4000/api/admin/feature-flags/{flagName} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"enabled": true,
"percentage": 123,
"userIds": [
"<string>"
]
}'
Update feature flag configuration (admin)
curl --request PUT \
--url http://localhost:4000/api/admin/feature-flags/{flagName} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"enabled": true,
"percentage": 123,
"userIds": [
"<string>"
]
}'
Dynamic authentication JWT token
Feature flag updated