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

Retrieve a list of the built-in and custom reactions available in the environment.

<Note>
  External Documentation

  To learn more, visit the [Trellix EDR documentation](https://docs.trellix.com/bundle/mvision-endpoint-detection-and-response-product-guide/page/UUID-38a30210-c528-b38e-d41b-06451cd12368.html).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                 |
  | ---------------- | ------------------------------------------------------------------------------------------- |
  | Limit            | The maximum number of results to return.                                                    |
  | Offset           | The number of results to skip before starting to collect the result set.                    |
  | Return All Pages | Automatically fetch all resources, page by page.                                            |
  | Sort             | The field to sort the results by. By default, the results are sorted in an ascending order. |
</div>

## Example Output

```json theme={"dark"}
{
	"jsonapi": {
		"version": "1.0"
	},
	"meta": {
		"totalResourceCount": 2
	},
	"data": [
		{
			"id": "15",
			"type": "builtinReactions",
			"attributes": {
				"catalogVersion": 1307,
				"metadata": {
					"contentUpdated": false
				},
				"hidden": false,
				"dbVersion": 0,
				"description": "Delete a folder by its full path",
				"classification": "REMEDIATION",
				"timeout": 60,
				"internalArguments": {},
				"internalName": "deleteFolder",
				"remediation": false,
				"task": "REACTION",
				"availableForTrigger": true,
				"name": "DeleteFolder",
				"tenantId": "",
				"arguments": [
					{
						"id": "2924",
						"name": "full_path",
						"type": "STRING",
						"collectorMappings": [
							{
								"id": "3057",
								"name": "Files",
								"output": {
									"id": "164",
									"name": "dir",
									"type": "STRING",
									"byDefault": false,
									"sequence": 2
								},
								"type": "BUILTIN",
								"collectorId": 3
							}
						],
						"optional": false
					}
				],
				"availableOffline": false,
				"chainedReactions": []
			}
		},
		{
			"id": "554",
			"type": "customReactions",
			"attributes": {
				"catalogVersion": 0,
				"metadata": {},
				"hidden": false,
				"dbVersion": 0,
				"description": "Rebootwindows_powershell",
				"timeout": 30,
				"internalArguments": {},
				"internalName": "_Custom_reaction8",
				"remediation": false,
				"task": "REACTION",
				"availableForTrigger": true,
				"name": "_Custom_reaction8",
				"tenantId": "06ADBB7B-2BD7-4EA7-8380-39C4398BCD3D",
				"arguments": [
					{
						"id": "2873",
						"name": "ip_address1",
						"type": "STRING",
						"collectorMappings": [],
						"optional": false
					},
					{
						"id": "2874",
						"name": "ip_address2",
						"type": "STRING",
						"collectorMappings": [],
						"optional": false
					}
				],
				"availableOffline": false,
				"chainedReactions": []
			}
		}
	],
	"links": {
		"self": "/edr/v2/reactions?page[offset]=0&page[limit]=20",
		"first": "/edr/v2/reactions?page[offset]=0&page[limit]=20",
		"prev": null,
		"next": "/edr/v2/reactions?page[offset]=20&page[limit]=20",
		"last": "/edr/v2/reactions?page[offset]=20&page[limit]=20"
	}
}
```

## Workflow Library Example

[List Reactions with Trellix Edr and Send Results Via Email](https://library.blinkops.com/workflows/list-reactions-with-trellix-edr-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-reactions-with-trellix-edr-and-send-results-via-email/canvas" />
</div>
