Skip to main content

OBJECTOPFLAGS

Object operation flags.

NameDescriptionType
allSpecifies all flags set; Including any future flags.boolean
require_read_access_after_operationRequires 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_operationRequires 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_changeIf specified, the operation will fail if it causes a change in the object version's name.boolean
require_change_permissions_access_after_operationRequires 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_operationRequires 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_versionsChanges the ACL of all versions of the object. This is currently used to request setting the ACL of all versions of an object, not just a specific version, when calling MF_ChangeSecurity.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
}