
admin.groupSetAzureStorageProxy( config as element(configuration), group-id as (Number|String), value as String ) as element(configuration)
This function sets the URL of the proxy server used by the group to access Azure blob storage.
http://marklogic.com/xdmp/privileges/admin/group-security
http://marklogic.com/xdmp/privileges/admin/group-security/{id}
  
 
  const admin = require('/MarkLogic/admin.xqy');
  const config = admin.getConfiguration()
  const groupid = admin.groupGetId(config, "Default")
  admin.groupSetAzureStorageProxy(config, groupid, "https://azproxy.marklogic.com.8080")
 
    
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.