
admin.groupScheduledTaskSetEnabled( config as element(configuration), group-id as (Number|String), task-id as (Number|String), enabled as Boolean ) as element(configuration)
This function enables one or more scheduled tasks for a group based on the group ID and task ID.
http://marklogic.com/xdmp/privileges/admin/group
http://marklogic.com/xdmp/privileges/admin/group/{id}
http://marklogic.com/xdmp/privileges/admin/group/scheduled-task
http://marklogic.com/xdmp/privileges/admin/group/scheduled-task/{id}
const admin = require('/MarkLogic/admin.xqy');
var config = admin.getConfiguration()
var groupId = admin.getGroupId(config, "myGrouop")
var taskId = admin.groupGetScheduledTask(config,
admin.groupGetId(config,"Default"), ())
admin.groupScheduledTaskSetEnabled(config, grupId, taskId, fn.true())
//returns the new configuration element -- use admin.saveConfiguration
//to save the changes to the configuration or pass the configuration
//to other Admin API functions to make other changes.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.