@@ -79,29 +79,28 @@ def list(
79
79
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
80
80
) -> SyncV4PagePaginationArray [InvestigateListResponse ]:
81
81
"""
82
- This endpoint returns information for each email that matches the search
83
- parameter(s).
82
+ Returns information for each email that matches the search parameter(s).
84
83
85
84
Args:
86
85
account_id: Account Identifier
87
86
88
- action_log: Controls whether the message action log in included in the response.
87
+ action_log: Determines if the message action log is included in the response.
89
88
90
- detections_only: If `false`, the search includes non- detections.
89
+ detections_only: Determines if the search results will include detections or not .
91
90
92
- domain: Filter by the sender domain
91
+ domain: The sender domains the search filters by.
93
92
94
93
end: The end of the search date range. Defaults to `now`.
95
94
96
- final_disposition: Filter messages by the provided disposition .
95
+ final_disposition: The dispositions the search filters by .
97
96
98
- message_action: Filter messages by actions applied to them
97
+ message_action: The message actions the search filters by.
99
98
100
- page: Page number of paginated results.
99
+ page: The page number of paginated results.
101
100
102
- per_page: Number of results to display .
101
+ per_page: The number of results per page .
103
102
104
- query: Space delimited query term(s) . The search is case-insensitive.
103
+ query: The space- delimited term used in the query . The search is case-insensitive.
105
104
106
105
The content of the following email metadata fields are searched:
107
106
@@ -183,13 +182,13 @@ def detections(
183
182
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
184
183
) -> InvestigateDetectionsResponse :
185
184
"""
186
- For emails that have a detection, this endpoint returns detection details such
187
- as threat categories, sender information, and links .
185
+ Returns detection details such as threat categories and sender information for
186
+ non-benign messages .
188
187
189
188
Args:
190
189
account_id: Account Identifier
191
190
192
- postfix_id: Message identifier
191
+ postfix_id: The identifier of the message.
193
192
194
193
extra_headers: Send extra headers
195
194
@@ -233,7 +232,7 @@ def get(
233
232
Args:
234
233
account_id: Account Identifier
235
234
236
- postfix_id: Message identifier
235
+ postfix_id: The identifier of the message.
237
236
238
237
extra_headers: Send extra headers
239
238
@@ -272,13 +271,13 @@ def preview(
272
271
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
273
272
) -> InvestigatePreviewResponse :
274
273
"""
275
- For emails that have a detection, this endpoint returns a preview of the message
276
- body as a base64 encoded PNG image .
274
+ Returns a preview of the message body as a base64 encoded PNG image for
275
+ non-benign messages .
277
276
278
277
Args:
279
278
account_id: Account Identifier
280
279
281
- postfix_id: Message identifier
280
+ postfix_id: The identifier of the message.
282
281
283
282
extra_headers: Send extra headers
284
283
@@ -317,13 +316,12 @@ def raw(
317
316
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
318
317
) -> InvestigateRawResponse :
319
318
"""
320
- For emails that have a detection, this endpoint returns the raw email as an EML
321
- file.
319
+ Returns the raw eml of any non-benign message.
322
320
323
321
Args:
324
322
account_id: Account Identifier
325
323
326
- postfix_id: Message identifier
324
+ postfix_id: The identifier of the message.
327
325
328
326
extra_headers: Send extra headers
329
327
@@ -367,7 +365,7 @@ def trace(
367
365
Args:
368
366
account_id: Account Identifier
369
367
370
- postfix_id: Message identifier
368
+ postfix_id: The identifier of the message.
371
369
372
370
extra_headers: Send extra headers
373
371
@@ -441,29 +439,28 @@ def list(
441
439
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
442
440
) -> AsyncPaginator [InvestigateListResponse , AsyncV4PagePaginationArray [InvestigateListResponse ]]:
443
441
"""
444
- This endpoint returns information for each email that matches the search
445
- parameter(s).
442
+ Returns information for each email that matches the search parameter(s).
446
443
447
444
Args:
448
445
account_id: Account Identifier
449
446
450
- action_log: Controls whether the message action log in included in the response.
447
+ action_log: Determines if the message action log is included in the response.
451
448
452
- detections_only: If `false`, the search includes non- detections.
449
+ detections_only: Determines if the search results will include detections or not .
453
450
454
- domain: Filter by the sender domain
451
+ domain: The sender domains the search filters by.
455
452
456
453
end: The end of the search date range. Defaults to `now`.
457
454
458
- final_disposition: Filter messages by the provided disposition .
455
+ final_disposition: The dispositions the search filters by .
459
456
460
- message_action: Filter messages by actions applied to them
457
+ message_action: The message actions the search filters by.
461
458
462
- page: Page number of paginated results.
459
+ page: The page number of paginated results.
463
460
464
- per_page: Number of results to display .
461
+ per_page: The number of results per page .
465
462
466
- query: Space delimited query term(s) . The search is case-insensitive.
463
+ query: The space- delimited term used in the query . The search is case-insensitive.
467
464
468
465
The content of the following email metadata fields are searched:
469
466
@@ -545,13 +542,13 @@ async def detections(
545
542
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
546
543
) -> InvestigateDetectionsResponse :
547
544
"""
548
- For emails that have a detection, this endpoint returns detection details such
549
- as threat categories, sender information, and links .
545
+ Returns detection details such as threat categories and sender information for
546
+ non-benign messages .
550
547
551
548
Args:
552
549
account_id: Account Identifier
553
550
554
- postfix_id: Message identifier
551
+ postfix_id: The identifier of the message.
555
552
556
553
extra_headers: Send extra headers
557
554
@@ -595,7 +592,7 @@ async def get(
595
592
Args:
596
593
account_id: Account Identifier
597
594
598
- postfix_id: Message identifier
595
+ postfix_id: The identifier of the message.
599
596
600
597
extra_headers: Send extra headers
601
598
@@ -634,13 +631,13 @@ async def preview(
634
631
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
635
632
) -> InvestigatePreviewResponse :
636
633
"""
637
- For emails that have a detection, this endpoint returns a preview of the message
638
- body as a base64 encoded PNG image .
634
+ Returns a preview of the message body as a base64 encoded PNG image for
635
+ non-benign messages .
639
636
640
637
Args:
641
638
account_id: Account Identifier
642
639
643
- postfix_id: Message identifier
640
+ postfix_id: The identifier of the message.
644
641
645
642
extra_headers: Send extra headers
646
643
@@ -679,13 +676,12 @@ async def raw(
679
676
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
680
677
) -> InvestigateRawResponse :
681
678
"""
682
- For emails that have a detection, this endpoint returns the raw email as an EML
683
- file.
679
+ Returns the raw eml of any non-benign message.
684
680
685
681
Args:
686
682
account_id: Account Identifier
687
683
688
- postfix_id: Message identifier
684
+ postfix_id: The identifier of the message.
689
685
690
686
extra_headers: Send extra headers
691
687
@@ -729,7 +725,7 @@ async def trace(
729
725
Args:
730
726
account_id: Account Identifier
731
727
732
- postfix_id: Message identifier
728
+ postfix_id: The identifier of the message.
733
729
734
730
extra_headers: Send extra headers
735
731
0 commit comments