Skip to main content

EntitlementBulkUpdateRequest

Object for specifying the bulk update request

Properties

NameTypeDescriptionNotes
entitlement_ids[]strList of entitlement ids to update[required]
json_patch[]JsonPatchOperation[required]
}

Example

from sailpoint.entitlements.models.entitlement_bulk_update_request import EntitlementBulkUpdateRequest

entitlement_bulk_update_request = EntitlementBulkUpdateRequest(
entitlement_ids=["2c91808a7624751a01762f19d665220d","2c91808a7624751a01762f19d67c220e","2c91808a7624751a01762f19d692220f"],
json_patch=[{"op":"replace","path":"/requestable","value":false},{"op":"replace","path":"/privilegeOverride/level","value":"HIGH"}]
)

[Back to top]