> ## 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 Items

This method retrieves the list of quarantined items available for a company. An item can be a file or an Microsoft Exchange object.

<Note>
  External Documentation

  To learn more, visit the [Bitdefender documentation](https://www.bitdefender.com/business/support/en/77209-140256-getquarantineitemslist.html).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter     | Description                                                                                                                                                |
  | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Action Status | Filters the quarantine items by IP address.                                                                                                                |
  | Endpoint ID   | The ID of the computer for which you want to retrieve the quarantined items. If not passed, he method returns the items quarantined in the entire network. |
  | Item Type     | The type of items returned.                                                                                                                                |
  | Threat Name   | Filters the quarantined items by threat name.                                                                                                              |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter  | Description                                                                                                         |
  | ---------- | ------------------------------------------------------------------------------------------------------------------- |
  | End Date   | Filters the items that were quarantined before the specified date.                                                  |
  | File Path  | Filters the quarantined items by file path.                                                                         |
  | IP Address | Filters the quarantine items by IP address.                                                                         |
  | Page       | The results page. The default value is 1.                                                                           |
  | Per Page   | The number of items displayed in a page. The upper limit is 100 items per page. Default value is 30 items per page. |
  | Start Date | Filters the items that were quarantined after the specified date.                                                   |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "5399c9b5-0b46-45e4-81aa-889952433d86",
	"jsonrpc": "2.0",
	"result": {
		"total": 2,
		"page": 2,
		"perPage": 1,
		"pagesCount": 2,
		"items": [
			{
				"id": "5d3968e0f23f730ecb0f68c2",
				"quarantinedOn": "2019-07-28T11:31:28",
				"actionStatus": 1,
				"companyId": "55896b87b7894d0f367b23c6",
				"endpointId": "5d36c255f23f730fa91944e2",
				"endpointName": "Computer 1",
				"endpointIP": "156.133.37.181",
				"canBeRestored": false,
				"canBeRemoved": false,
				"threatName": "Virus 0",
				"details": {
					"filePath": "c:\\Virus0\\virus0.exe"
				}
			}
		]
	}
}
```

## Workflow Library Example

[List Quarantined Items with Bitdefender and Send Results Via Email](https://library.blinkops.com/workflows/list-quarantined-items-with-bitdefender-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-items-with-bitdefender-and-send-results-via-email/canvas" />
</div>
