Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
I am attempting to extract a list of all clients on a specific SSID.I have managed to get a list of all clients but the client list only includes the device ID. Mac, and IP. What I really want is the device description and manufacture as it shown i...
I am looking for a way to get the device status of a MS switch using python and the API.I have attempted:getDevicegetOrginizationDevicesStatusesget DeviceStatusesThis works great for a MR device but the MS device seems to not populate those fields.Th...
Sorry, I am new but am hoping this is the right place to ask this question. I am attempting to write a script to check the device status of Meraki switches and Access Point per site. The following code properly gets a response from the access point...
Thank you for the pointer. Found the issue. The correct line of code is as follows:status = dashboard.organizations.getOrganizationDevicesStatuses(org_id,serials = device['serial'])
status = dashboard.devices.getOrganizationDevicesStatuses(org_id, device['serial'])AttributeError: 'Devices' object has no attribute status = dashboard.devices.getDevicesStatuses(org_id, device['serial'])AttributeError: 'Devices' object has no attrib...