Hi,
I'm trying to draft an ArcGIS Python API script that can monitor the license allocations for our ArcGIS Online organisation.
According to the documentation there should be a 'plot' function that returns this information, but I can't figure out the syntax to get it to work.
For example, the following works:
lm = gis.admin.license.all()
print(lm)
But this doesn't:
lm = gis.admin.license.plot()
print(lm)
AttributeError: 'LicenseManager' object has no attribute 'plot'
I don't entirely understand the guidance, as there aren't any code snippets... where am I going wrong?
Thanks!