Enabling Admin API Support

By default, Arcadia Enterprise Admin API URL support is disabled. A platform administrator can enable this support, at the level of individual datatypes, through site-specific setting Arcadia Visualization Advanced Configuration Snippet, as we demonstrate in the following image.

enabling admin api

To enable specific data types, include them on the assignment line. Here, we are enabling only visuals and datasets:

ADMIN_API_URL_LIST  = ['visuals', 'datasets']
To enable all data type support, you can either list them all in the text box, as we do here:
ADMIN_API_URL_LIST  = ['visuals', 'datasets', 'connections', 'users', 'groups',
   'roles', 'segments', 'filterassociations']

Or use the wild card to specify all options:

ADMIN_API_URL_LIST  = ['*']