Configure SD-WAN Uplink Statistics target via API

Solved
gianlucaulivi
Here to help

Configure SD-WAN Uplink Statistics target via API

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:

gianlucaulivi_3-1736875560167.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
PhilipDAth
Kind of a big deal
Kind of a big deal
3 Replies 3
PhilipDAth
Kind of a big deal
Kind of a big deal

I can't see any API for this either.

PhilipDAth
Kind of a big deal
Kind of a big deal
giovanitestoni
Here to help

Hello!

 

You need to use this: 

 

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

 

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
    }
    ])

 

Get notified when there are additional replies to this discussion.