Hi @Adam-Baxter , Below community post appears quite similar to your requirement, please refer the solution. Hope this helps.. https://community.meraki.com/t5/Developers-APIs/Monitor-number-of-third-party-VPN-connections-using-the-API/m-p/79993#M3133 https://api.meraki.com/api/v0/networks/{{networkId}}/events/?perPage=3&productType=appliance&includedEventTypes[]=client_vpn_connect&includedEventTypes[]=client_vpn_disconnect Also, refer https://api.meraki.com/api_docs/v0#list-the-clients-that-have-used-this-network-in-the-timespan SAMPLE RESPONSE has the Usage Successful HTTP Status: 200 [
{
"usage": {
"sent": 138.0,
"recv": 61.0
},
"id": "k74272e",
"description": "Miles's phone",
"mac": "22:33:44:55:66:77",
"ip": "1.2.3.4",
"user": "milesmeraki",
"vlan": 255,
"switchport": null,
"ip6": "",
"firstSeen": 1518365681,
"lastSeen": 1526087474,
"manufacturer": "Apple",
"os": "iOS",
"recentDeviceSerial": "Q234-ABCD-5678",
"recentDeviceName": "My AP",
"recentDeviceMac": "00:11:22:33:44:55",
"ssid": "My SSID",
"status": "Online",
"notes": "My client note",
"ip6Local": "fe80:0:0:0:1430:aac1:6826:75ab",
"smInstalled": true,
"groupPolicy8021x": "Student_Access"
}
] Thanks!
... View more