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 reaching out regarding a discrepancy I've observed between two API endpoints: 1. getNetworkClientsApplicationUsage: https://developer.cisco.com/meraki/api-v1/get-network-clients-application-usage/2. getNetworkClientsBandwidthUsageHistory: https:...
When I use getOrganizationApplianceVpnStatuses, I get all VPN connections: Site-To-Site (Meraki VPNs) and Site-To-Other (third party VPNs).But when I use getOrganizationApplianceVpnStats, I get statistics only for Site-To-Site (Meraki VPNs).Is there ...
I'm running the following simple script:from dnacentersdk import DNACenterAPIapi = DNACenterAPI(USERNAME, PASSWORD, base_url=BASE_URL, verify=False)
res = api.devices.get_device_list()
print(res)And I get a warning:sys:1: ResourceWarning: unclosed <s...
I'm using getNetworkClients to get the client list, then I use their IDs with getNetworkClientsApplicationUsage to their usage.Unfortunately, a lot of times I get an error:Message:{"errors":["One or more clients were not found"]}I found that the "pro...
1. I use both operations: getNetworkClientsUsageHistories and getNetworkClientsApplicationUsage.2. getNetworkClientsUsageHistories also has the same problem with the same Cisco clients.It happened when I used timespan=1000 and when I used timespan=72...
I would like to get as much as we can information about the clients, and look for correlation between client activity and network issues. For that I need an API with the client usage and activity. The list of application and their usage are not relev...
We need the clients and their usage.How getNetworkTraffic can help us? It just tell me how many client used an application, but don't give me the client list.The problem I found is a bug in Meraki, and it should be fix. Or at least to give instructio...
Great news!Bryan Vargas fixed the issue and created new version (2.10.2).The new version supports context manager:https://github.com/cisco-en-programmability/dnacentersdk?tab=readme-ov-file#resource-management
Case 13304304I use https://api.meraki.com:443/api/v1/networks/L_xxxx/clients to get the client list.Then I take their IDs (for example: k09fefe,k09fe1e,k09fe1f,k09fe20,k09fe21,k09fe32) .Then I use https://api.meraki.com:443/api/v1/networks/L_xxxx/cli...