cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2551
Views
5
Helpful
3
Replies

Configure SD-WAN Uplink Statistics target via API

gianluca.ulivi
Community Member

Hi All,

I need to add a target to the SD-WAN Uplink Statistics on multiple networks, unfortunately I was not able to find an API to configure on all my networks via a script.
Just to be clear, I'm talking about this configuration:

image.png

I don't know if it's important but I'm planning to do it on the Chinese Dashboard as none of the network there have it configured (I will not configure 8.8.8.8).

Thanks a lot,

Gianluca

1 Accepted Solution
3 Replies 3

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

I can't see any API for this either.

giovanitestoni
Level 1
Level 1

Hello!

You need to use this:

https://developer.cisco.com/meraki/api-v1/update-network-appliance-connectivity-monitoring-destinations/

To configure on all networks, make for loop in python.

network_id = [A, B, C]

for x in network_id:
     response = dashboard.appliance.updateNetworkApplianceConnectivityMonitoringDestinations(
        x,destinations = [
    {
        "ip": "8.8.8.8",
        "description": "Google-1",
        "default": False
    }
    ])