Client dashboard APIs

Solved
diablo24
Building a reputation

Client dashboard APIs

Hi,

I was wondering if there is a dashboard API that would return 'application' information that's displayed under Network-wide > Clients? There is an application graph and details that are useful to us.

 

Thanks in advance,

-Jerome

1 Accepted Solution
diablo24
Building a reputation

5 Replies 5
PhilipDAth
Kind of a big deal
Kind of a big deal

Negative.  The APIs relate to provisioning. They do not have reporting capabilities.

No this is currently not possible. I'd advise to "Make a Wish" via dashboard to get the product management team aware of the API's that the community are calling out for 🙂

Eliot F | Simplifying IT with Cloud Solutions
Found this helpful? Give me some Kudos! (click on the little up-arrow below)
diablo24
Building a reputation

@MilesMeraki@PhilipDAth

 

Thanks Guys! Much appreciated!

DexterLaBora
Meraki Employee
Meraki Employee

There are now two ways to get application traffic analysis. Hope this helps!

 

Network Specific

Postman Doc

 

GET /networks/[id]/traffic

 

 

[
    {
        "application": "Miscellaneous web",
        "destination": "scripts.dailymail.co.uk",
        "protocol": "TCP",
        "port": 80,
        "recv": 375,
        "sent": 12,
        "flows": 2,
        "activeTime": 60,
        "numClients": 1
    },
    {
        "application": "Miscellaneous web",
        "destination": "www.metdaan.com",
        "protocol": "TCP",
        "port": 80,
        "recv": 4218,
        "sent": 144,
        "flows": 9,
        "activeTime": 240,
        "numClients": 1
    },

 

 

 

Client Specific - NEW!

Postman Doc

GET /networks/[networkId]/clients/[id_or_mac_or_ip]/trafficHistory 

 

 

Successful HTTP Status: 200
[
  {
    "ts": 1518365681,
    "application": "Google",
    "destination": "www.google.com",
    "protocol": "UDP",
    "port": 443,
    "recv": 383,
    "sent": 56,
    "numFlows": 5,
    "activeSeconds": 240
  }
]

 

 

diablo24
Building a reputation

This is great! Thanks so much for sharing!

Get notified when there are additional replies to this discussion.
Welcome to the Meraki Community!
To start contributing, simply sign in with your Cisco account. If you don't yet have a Cisco account, you can sign up.