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.
Good Afternoon,I've been trying for a long time to get endpoints with required 'clientid' path or query to work with absolutely no luck. I must be doing something horribly wrong!I have a list of 'id' values in string format, separated by commas, in a...
Hello, Question about the time value of 'lastReportedAt'.I currently have a connection between Tableau Server and Meraki API data. Data is pulled and refreshed every 5 minutes from dashboard.organizations.getOrganizationDevicesStatuses(organi...
This endpoint:https://developer.cisco.com/meraki/api-v1/get-network-clients/will show all unique ids that have used a network during a specific timespan. Once you get the ids, put them in a 'list' and you can use them with other endpoints.
are you talking about client ids? like the client ids Meraki assigns to each user?for example:client_ids = ['k123456', 'k789abc', 'kabcde1', 'k01abcde']
Hi Phillip,I adjusted my loop to:for netid in network_id: for id in client_ids: try: test = dashboard.networks.getNetworkClient(netid, id) print(test) except meraki.exceptions.APIError as e: if '404 N...
As an update to this thread, I updated the code to pull data at the 55th second mark and now it pulls whatever was reported within that minute instead of showing status from 2 different minutes.Example showing only what was reported within a specific...