
admin.groupGetAuditEventTypeEnabled( config as element(configuration), group-id as (Number|String), event-type as String ) as Boolean
      This function returns the audit event type's enabled setting
      for the audit configuration.  A value of true is returned is the
      specified event type is set.  Otherwise false is returned.
    
http://marklogic.com/xdmp/privileges/admin/group
http://marklogic.com/xdmp/privileges/admin/group/{id}
  
  const admin = require('/MarkLogic/admin.xqy');
  const config = admin.getConfiguration()
  const groupid = admin.groupGetId(config, "Default")
  admin.groupGetAuditEventTypeEnabled(config, groupid,
        "noPermission")
   //returns the new enabled status for the NoPermission eventType 
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.