
xdmp.documentRemovePermissions( uri as String, permissions as Object[] ) as null
Removes the given permissions from the named document or directory. The user must have update permissions on the document or directory.
| Parameters | |
|---|---|
| uri | The document URI. |
| permissions | Permission objects. |
declareUpdate();
xdmp.documentRemovePermissions(
"/example.json", [
xdmp.permission("development", "update"),
xdmp.permission("qa", "read")
]);
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.