Hello - I am having a hard time with getting multiple event types to be returned on the below call.
When I do them individually, they work, but when I try passing in an array containing multiple types, the return is only for one of them.
from the API docs:
- includedEventTypes (array): A list of event types. The returned events will be filtered to only include events with these types.
eventTypes = ['radius_mac_auth', '8021x_eap_failure']
events = m.events.getNetworkEvents(network['id'], productType='switch',
includedEventTypes=eventTypes)
for event in events['events']:
print(event)
Thanks!