> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Quarantined Emails

Retrieves a list of quarantined messages from the Proofpoint Protection Server.

<Note>
  External Documentation

  To learn more, visit the [Proofpoint Protection Server documentation](https://www.proofpoint.com/sites/default/files/technical-briefs/pfpt-us-tb-proofpoint-ser-api-overview.pdf).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter  | Description                                                                     |
  | ---------- | ------------------------------------------------------------------------------- |
  | End Date   | Time of when the search should end.                                             |
  | Filter By  | Choose to filter messages by sender mail, recipient mail, or mail subject.      |
  | Folder     | Quarantine folder name. Default is "Quarantine".                                |
  | Recipient  | Filter quarantined messages by the recipient email address.                     |
  | Sender     | Filter quarantined messages by the sender email address.                        |
  | Start Date | Time from when the search should begin.                                         |
  | Subject    | Filter by message subject, message subject starts with, ends with, or contains. |
</div>

## Example Output

```json theme={"dark"}
{
	"Proofpoint": {
		"QuarantinedMessage": [
			{
				"date": "2021-05-20 15:30:45",
				"folder": "CustomQuarantine",
				"from": "jane@smith.com",
				"guid": "XZ_WjHKL3kR7pMNO8ABCzXYZabc123",
				"host_ip": "[192.168.1.1] [192.168.1.1]",
				"localguid": "7:8:123",
				"messageid": "ZXY123ABC789@example.net",
				"processingserver": "...",
				"rcpts": [
					"custom@recipient.com"
				],
				"size": "8000",
				"spamscore": "90",
				"subject": "Modified Loan Request"
			},
			{
				"date": "2021-06-10 08:45:22",
				"folder": "CustomQuarantine",
				"from": "alice@wonderland.com",
				"guid": "pqr789XYZabc321DEF",
				"host_ip": "[192.168.2.2] [192.168.2.2]",
				"localguid": "9:10:456",
				"messageid": "ABC987XYZ654@email2.example.com",
				"processingserver": "...",
				"rcpts": [
					"another@user.com"
				],
				"size": "7500",
				"spamscore": "95",
				"subject": "Updated Loan Proposal"
			}
		]
	}
}
```

## Workflow Library Example

[List Quarantined Emails with Proofpoint Protection Server and Send Results Via Email](https://library.blinkops.com/workflows/list-quarantined-emails-with-proofpoint-protection-server-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-quarantined-emails-with-proofpoint-protection-server-and-send-results-via-email/canvas" />
</div>
