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

# Search Incidents

The Search Incidents API lists incidents and related data.

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                 |
  | --------- | ----------------------------------------------------------- |
  | Expand    | Specify which additional fields to include in the response. |
  | Limit     | Limit the number of identities per page.                    |
  | Next Page | Token denoting start of next page.                          |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"apps": [],
			"assignee": {
				"userEmail": "Email",
				"userFirstName": "First Name",
				"userId": "Unique ID",
				"userLastName": "Last Name"
			},
			"assigneeId": "Unique id of assignee.",
			"category": "An enumeration.",
			"compliance": [],
			"createdAt": "The date the incident was first reported.",
			"description": "Description",
			"entities": [],
			"id": "Unique id",
			"isResolved": false,
			"policy": {
				"id": "Unique id of policy.",
				"name": "Name of policy.",
				"templateId": "Template ID"
			},
			"policyId": "Unique id of policy.",
			"recommendation": "Recommendation",
			"severity": "An enumeration.",
			"status": "An enumeration.",
			"tactics": [],
			"techniques": [],
			"updatedAt": "The date the incident was last updated.",
			"url": "URL"
		}
	],
	"pagination": {
		"hasMore": false,
		"limit": 20,
		"nextPage": "Token denoting start of next page"
	}
}
```

## Workflow Library Example

[Search Incidents with Authomize and Send Results Via Email](https://library.blinkops.com/workflows/search-incidents-with-authomize-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/search-incidents-with-authomize-and-send-results-via-email/canvas" />
</div>
