cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
10103
Views
2
Helpful
3
Replies

Monitor Devcies

Philip D'Ath
Meraki Community All-Star
Meraki Community All-Star

It is not possible to monitor weather devices are up or down via the Dashboard API - correct?

1 Accepted Solution

Accepted Solutions

ww^
Meraki Community All-Star
Meraki Community All-Star

you can check if the uplink status is active.

GET https://dashboard.meraki.com/api/v0/networks/{{networkId}}/devices/{{serial}}/uplink

{
"status": "Active",
}

VS

[
"status": "Failed"
}

View solution in original post

3 Replies 3

ww^
Meraki Community All-Star
Meraki Community All-Star

you can check if the uplink status is active.

GET https://dashboard.meraki.com/api/v0/networks/{{networkId}}/devices/{{serial}}/uplink

{
"status": "Active",
}

VS

[
"status": "Failed"
}

Philip D'Ath
Meraki Community All-Star
Meraki Community All-Star

That did the trick thanks!

Philip D'Ath
Meraki Community All-Star
Meraki Community All-Star

I wish there was a way to all the API from a "front end" page, rather than having to do it from a back end.

It would be great if you could define a CORS domain in the API key section.