Update: When I was trying this endpoint yesterday, before running into the issue with the includedEventTypes, I was getting an error 500. I was not sure why, but with the information from @TonyC, I know what was happening. It looks like the productType is required. If I specify only productType=appliance, I can pull the data from the event log. So, the following, works just fine. url = 'https://api.meraki.com/api/v0/networks/'+netId+'/events' query = {'productType':'appliance'} response = requests.request("GET", url, params=query, headers=header) You still have to do your own parsing if you are looking for particular events, but at least there is a method for getting the data.
... View more