That should never have worked. I would expect you would need to loop through the output of getOrganizationInventoryDevices() and print out the serial number field of each device. Untested, but something more like: for device in dashboard.organizations.getOrganizationInventoryDevices(organization_id,total_pages='all'): print(device['serial'])
... View more