Is it possible to change the delete protection properties of a group within ArcGIS Online using the ArcGIS API for Python? Based on the documentation of the Group module (https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.gis.toc.html#group
), I can return the delete protection status of a group but I don’t see method of changing the property.
Solved! Go to Solution.
You do it like
group.protected = False
The setter will push the change to the backend.
You do it like
group.protected = False
The setter will push the change to the backend.