Our integration with the Meraki Dashboard API requires us to get the network usage for each client, for each WiFi Access Point in an organization. This requires us to make a separate call for each device to fetch the client, which is slow, prone to throttling by the API, and puts unnecessary load on the Meraki servers. We would like to request an additional endpoint to enable us to do this without making multiple calls, or some guidance on if there is an existing API/functionality that would help us achieve this goal more efficiently. For example: Lists all the clients for an organization, including the serial number of the device the client is connected to. GET /organizations/[id]/clients Parameters timespan - The timespan for which clients will be fetched. Must be in seconds and less than or equal to a month (2592000 seconds). Sample Response Successful HTTP Status: 200 [
{
"usage": {
"sent": 138.0,
"recv": 61.0
},
"id": "k74272e",
"description": "Miles's phone",
"mdnsName": "Miles's phone",
"dhcpHostname": "MilesPhone",
"mac": "00:11:22:33:44:55",
"ip": "1.2.3.4",
"vlan": "",
"switchport": null,
"serial":"Q234-ABCD-5678"
}
] Critical fields for our integration are: usage (sent/recv) description mac ip serial (i.e. the AP the client is connected to) Thanks Martin
... View more