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.
Hi Meraki developers,I noticed that API GET: /organizations/{organizationId}/policyObjects?perPage=100 response header "Link" is always empty.I have 200 policy objects. Via paginated request I can receive only the first N (for example 100) entries, "...
Hello Meraki team!I need to map all clients to the corresponding group policies using API, could you please suggest the best endpoint to do it?1. I found that GET /networks/{networkId}/clients response contains "groupPolicy8021x" for each client.Can ...
The best solution is:1) Fetch all clients via GET /networks/{networkId}/clients|2) Put the fetched clients into a hashtable (Map) with client.id as a key and client as a value.3) Fetch all clients with group policies via GET /networks/{networkId}/pol...
The best solution is:1) Fetch all clients via GET /networks/{networkId}/clients|2) Put the fetched clients into a hashtable (Map) with client.id as a key and client as a value.3) Fetch all clients with group policies via GET /networks/{networkId}/pol...
Hi rbnielsen, thank you.Adding parallelism will definitely reduce the time to collect all client policies by about 5 times (5 because of Meraki rate limiter which allows ~5 requests per second).Anyway, the overall complexity is still O(N), because O...