OBJECTOPFLAGS
Object operation flags.
| Name | Description | Type |
|---|---|---|
all | Specifies all flags set; Including any future flags. | boolean |
require_read_access_after_operation | Requires read access to the object after the object operation. If available, the operation fails if the user does not have read access to the object after the operation. | boolean |
require_edit_access_after_operation | Requires edit access to the object after the object operation. If available, the operation fails if the user does not have edit access to the object after the operation. | boolean |
disallow_name_change | If specified, the operation will fail if it causes a change in the object version's name. | boolean |
require_change_permissions_access_after_operation | Requires security change access to the object after the object operation. If available, the operation fails if the user does not have security change access to the object after the operation. | boolean |
require_full_access_after_operation | Requires full access to the object after the object operation. If available, the operation fails if the user does not have full access to the object after the operation. | boolean |
change_acl_in_all_versions | When set, applies the ACL change to all versions of the object instead of only the specified version. Used with the ChangeSecurity operation. | boolean |
verify_check_in_wopi_locked_document | Verify the document is locked for WOPI Co-authoring or editing during checkin. | boolean |
Example
{
"all": false,
"require_read_access_after_operation": false,
"require_edit_access_after_operation": false,
"disallow_name_change": false,
"require_change_permissions_access_after_operation": false,
"require_full_access_after_operation": false,
"change_acl_in_all_versions": false,
"verify_check_in_wopi_locked_document": false
}