Hello,
Is there a way to search for all the users that have the userLicenseTypeId = CreatorUT in Portal?
My code returns nothing:
import arcgis
import time
from arcgis.gis import GIS
gis = GIS("https://xyz.com/", username="admin", password="xyz", verify_cert=False)
print("Connection Check : Connected")
myLicType = [user for user in gis.users.search(query=user.userLicenseTypeId)] << returns blank
Thanks !
AT