The feature flags service allows retrieving the status of available features in the platform.
Get all features
# <CORE_HOST> FlowerDocs Core base URL
# <TOKEN> authentication token
curl -X GET "<CORE_HOST>/rest/features" \
-H "token: <TOKEN>"
Get a specific feature
# <CORE_HOST> FlowerDocs Core base URL
# <TOKEN> authentication token
# <NAME> feature name
curl -X GET "<CORE_HOST>/rest/features/<NAME>" \
-H "token: <TOKEN>"
Get internal features
# <CORE_HOST> FlowerDocs Core base URL
# <TOKEN> authentication token
curl -X GET "<CORE_HOST>/rest/features/internal" \
-H "token: <TOKEN>"
Get custom features
# <CORE_HOST> FlowerDocs Core base URL
# <TOKEN> authentication token
curl -X GET "<CORE_HOST>/rest/features/custom" \
-H "token: <TOKEN>"