Hey @Prasadk, Sadly there is no way to receive alerts from Meraki immediately once the link goes down, however an alternate monitoring implmentation could be the following: What you would need to do is - Use the API to get a list of all organisations within your Dashboard - Get a list of all inventory within that organisation - Filter out for MX,Z1,Z3 devices and store into a list - Iterate over the list of the filtered devices - and get the Uplink info for WAN1 and WAN2 keys - Write the details to a CSV/XLS file Rerun the program again after 2hrs/4hrs/24hrs (your choice) , Compare the new run file with the old file and if any changes, output that to an Email or whatever you wish to do to process that. This is how I would have done it. Hope this helps. You can find the relevant API calls in the Documentation of the Python SDK.
... View more