We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95d6661 commit 5fe60d0Copy full SHA for 5fe60d0
run_checks.py
@@ -31,11 +31,18 @@
31
events_response = api_instance.get_event(request_id)
32
print("\n\n\nEvent response: \n", events_response.products)
33
34
-
35
except ApiException as e:
36
print("Exception when calling DefaultApi->get_event: %s\n" % e)
37
exit(1)
38
+try:
39
+ search_events_response = api_instance.search_events(2, bot="bad")
40
+ print("\n\n\nSearch events response: \n", search_events_response)
41
+
42
+except ApiException as e:
43
+ print("Exception when calling DefaultApi->search_events: %s\n" % e)
44
+ exit(1)
45
46
# Async methods examples
47
try:
48
visits_response_request = api_instance.get_visits(visitor_id, limit=2, async_req=True)
0 commit comments