Describe the bug
When calling the create() function from the GroupManager the membership_access parameter is supposed to be set to None that will allow Any organization's members join the group. This is not the case, the default is org. Even if you use the GroupManager update() function with the membership_access parameter set to None it is not honoured. There is no way to use the create() or update() functions to allow Any organization's members join the group.
To Reproduce
from arcgis.gis import GIS
agol = GIS("home")
agol.groups.create(
title = "Test_Group",
tags = ["Group", "Training"]
)
error:
No error is produced, it simply does not do what is supposed to but will create the group with membershipAccess property set to org
Screenshots
The default should be Any organization's members according to the documentation. But it is org.
Expected behavior
The default or setting membership_access to None should set the Who can be in this group? to Any organization's members
Platform (please complete the following information):
OS: Windows 10
Browser: Chrome
Python API Version: 2.1.0.2
Additional context
The GroupManager update() function does not update the membership_access to None either.
Describe the bug When calling the create() function from the GroupManager the membership_access parameter is supposed to be set to None that will allow Any organization's members join the group. This is not the case, the default is org. Even if you use the GroupManager update() function with the membership_access parameter set to None it is not honoured. There is no way to use the create() or update() functions to allow Any organization's members join the group.
To Reproduce from arcgis.gis import GIS
agol = GIS("home")
agol.groups.create( title = "Test_Group", tags = ["Group", "Training"] )
error: No error is produced, it simply does not do what is supposed to but will create the group with membershipAccess property set to org
Screenshots The default should be Any organization's members according to the documentation. But it is org.
Expected behavior The default or setting membership_access to None should set the Who can be in this group? to Any organization's members
Platform (please complete the following information):
Additional context The GroupManager update() function does not update the membership_access to None either.