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

Search for entities in your software catalog based on a set of rules.

<Note>
  External Documentation

  To learn more, visit the [Port documentation](https://docs.port.io/api-reference/search-entities/).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter                                    | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
  | -------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Allow Partial Results                        | Select to allow partial results in the search.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
  | Attach Identifier To Title Mirror Properties | Select to attach the identifier of the related entity to the title mirror property.                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
  | Attach Title To Relations                    | Select to attach the title of the related entity to the relation.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
  | Combinator                                   | The combinator to apply to the search rules.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
  | Exclude                                      | A comma-separated list of properties to exclude from the search results.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
  | Exclude Calculated Properties                | Select to exclude calculated properties from the search results.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
  | Include                                      | A comma-separated list of properties to include in the search results.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
  | Rules                                        | A list of search rules.<br /><br />**For example:**<br /><pre><code>\[<br />  \{<br />    "property": "\$blueprint",<br />    "operator": "=",<br />    "value": "service"<br />  },<br />  \{<br />    "combinator": "or",<br />    "rules": \[<br />      \{<br />        "property": "environment",<br />        "operator": "=",<br />        "value": "production"<br />      },<br />      \{<br />        "property": "environment",<br />        "operator": "=",<br />        "value": "staging"<br />      }<br />    ]<br />  }<br />]</code></pre> |
</div>

## Example Output

```json theme={"dark"}
{
	"matchingBlueprints": [
		"string"
	],
	"failedBlueprints": [
		"string"
	],
	"entities": [
		{
			"identifier": "string",
			"title": "string",
			"icon": "string",
			"team": "string",
			"properties": {},
			"relations": {}
		}
	]
}
```

## Workflow Library Example

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