Hi guys,
I'm trying to figure out how to list all the domains under my org/department:
org = Organization(client=client)
ssl = SSL(client=client)
domain = Domain(client=client)
cert_org = org.find(dept_name="service hosting")
domains = domain.all()
for domain in domains:
print(domain)
But this only lists 12, where the list should be 500 to 600.
Thanks.
Hi guys,
I'm trying to figure out how to list all the domains under my org/department:
org = Organization(client=client)
ssl = SSL(client=client)
domain = Domain(client=client)
cert_org = org.find(dept_name="service hosting")
domains = domain.all()
for domain in domains:
print(domain)
But this only lists 12, where the list should be 500 to 600.
Thanks.