You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sessionID: str: A custom string to distinguish between different sessions
1427
1427
1428
1428
fromBeginning: bool: Requires a sessionID. When used with a new session ID, returns the first hour of data in the time window (rather than the last). Returns an error if the session ID already exists
1429
+
1430
+
ip: str: Filter for a specific IPv4 address.
1431
+
1432
+
top: int: Limits the number of results in the response payload. Primarily intended for testing. When you apply this parameter to risk feeds, results are sorted by all_threats_combined_percent (descending).
sessionID: str: A custom string to distinguish between different sessions
1459
1463
1460
1464
fromBeginning: bool: Requires a sessionID. When used with a new session ID, returns the first hour of data in the time window (rather than the last). Returns an error if the session ID already exists
1465
+
1466
+
ip: str: Filter for a specific IPv4 address.
1467
+
1468
+
top: int: Limits the number of results in the response payload. Primarily intended for testing. When you apply this parameter to risk feeds, results are sorted by all_threats_combined_percent (descending).
help="Adds a header to the first line of response when text/csv is set in header parameters",
549
549
),
550
-
top: str=typer.Option(
550
+
top: int=typer.Option(
551
551
None,
552
552
"--top",
553
553
help="Number of results to return in the response payload. This is ignored in download endpoint",
@@ -622,6 +622,17 @@ def feeds_iphotlist(
622
622
"--frombeginning",
623
623
help="Requires a sessionID. When used with a new session ID, returns the first hour of data in the time window (rather than the last). Returns an error if the session ID already exists",
624
624
),
625
+
ip: str=typer.Option(
626
+
None,
627
+
"-ip",
628
+
"--ipaddr",
629
+
help="Filter for a specific IPv4 address.",
630
+
),
631
+
top: int=typer.Option(
632
+
None,
633
+
"--top",
634
+
help="Number of results to return in the response payload. This is ignored in download endpoint",
635
+
),
625
636
headers: bool=typer.Option(
626
637
False,
627
638
"--headers",
@@ -697,6 +708,17 @@ def feeds_iprisk(
697
708
"--frombeginning",
698
709
help="Requires a sessionID. When used with a new session ID, returns the first hour of data in the time window (rather than the last). Returns an error if the session ID already exists",
699
710
),
711
+
ip: str=typer.Option(
712
+
None,
713
+
"-ip",
714
+
"--ipaddr",
715
+
help="Filter for a specific IPv4 address.",
716
+
),
717
+
top: int=typer.Option(
718
+
None,
719
+
"--top",
720
+
help="Number of results to return in the response payload. This is ignored in download endpoint",
0 commit comments