xdmp.documentAddPermissions

xdmp.documentAddPermissions(
   uri as String,
   permissions as Object[]
) as null

Summary

Adds the given permissions to the given document or directory. The user must have update or insert permissions on the document.

Parameters
uri The document URI.
permissions Permission objects.

Example

declareUpdate();
xdmp.documentAddPermissions(
    "/example.json", [
      xdmp.permission("development", "update"),
      xdmp.permission("qa", "read")
    ]);
Powered by MarkLogic Server | Terms of Use | Privacy Policy