Hi There,
I am using Python and Meraki API to write scripts to male life easier. I am trying to add serials/devices to my organization but it fails with a connect error in the API. This is weird cause i can make networks and other stuff in my organisaton.
I wrote a function to add a serial
def Claim_Org_Device(def_org,def_serial😞
my_serial = {}
my_list = []
my_list.append(def_serial)
my_serial['serials'] = my_list
print(my_serial)
response = dashboard.organizations.claimOrganization(def_org,**my_serial)
#
# Main
#
dashboard = meraki.DashboardAPI(api_key)
Claim_Org_Device(<org_id>,"XXXX-XXXX-XXXX😞
The API returns :
Is this a bug in the meraki API ?