Hi @ChristianCa and @Jon_Hartman , I ran into this same problem retrieving licenses for my clients. You can get license info for co-term licenses with these URLs depending on your version: https://api.meraki.com/api/v0/organizations/{organizationId}/licenseState https://api.meraki.com/api/v1/organizations/{organizationId}/licenses/overview For my script, I get the initial list of orgs, and then for each organization I check org_dict['licensing']['model'] == 'co-term'. (The var org_dict is my own.) If it matches, I use the co-term URL, else I use your URL to get the license info. Thanks, Tom
... View more