Hi all, not sure if this is the proper place to put this or perhaps the Python SDK will get more attention, but I think this is an API issue not on the Python implementation itself.
The issue is just what the title says.
You can reproduce this with this simple script:
import meraki
dashboard = meraki.DashboardAPI()
result = dashboard.organizations.getOrganizationDevicesSystemMemoryUsageHistoryByInterval(
"<ORG_ID>",
productTypes=["switch"])
print(len(result["items"]))
In my case, it will return the same number irrespective of the productTypes list passing "appliance", "cellularGateway" or whatever.
Pure API calls with curl or some API client suffer the same issue so this is not a but on the Python SDK.
Other APIs are able to filter by productTypes without issues, but not this one.
Could you please take a look or redirect me to the proper support channel? Thanks a lot!
Hi all, not sure if this is the proper place to put this or perhaps the Python SDK will get more attention, but I think this is an API issue not on the Python implementation itself.
The issue is just what the title says.
You can reproduce this with this simple script:
In my case, it will return the same number irrespective of the
productTypeslist passing"appliance","cellularGateway"or whatever.Pure API calls with
curlor some API client suffer the same issue so this is not a but on the Python SDK.Other APIs are able to filter by
productTypeswithout issues, but not this one.Could you please take a look or redirect me to the proper support channel? Thanks a lot!