Enablement Management allows users to see what Wallaroo features have been activated.
Lists the enablement features for the Wallaroo instance.
{}
# List enablement features
# Retrieve the token
headers = wl.auth.auth_header()
api_request = f"{APIURL}/v1/api/features/list"
data = {
}
response = requests.post(api_request, json=data, headers=headers, verify=True).json()
response
{'features': {'plateau': 'true'},
'name': 'Wallaroo Dev',
'is_auth_enabled': True}