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

# Show Packages

Retrieve a list of packages with optional filtering.

<Note>
  External Documentation

  To learn more, visit the [Check Point Management documentation](https://sc1.checkpoint.com/documents/latest/APIs/#web/show-packages~v2.0.1%20).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter                 | Description                                                                                                                                                                                                                                                                                                  |
  | ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Details Level             | The level of details to include in the response.                                                                                                                                                                                                                                                             |
  | Domains To Process        | A comma-separated list of domains to process. This must be run from the system domain with `ignore-warning` set to true.                                                                                                                                                                                     |
  | Filter                    | The search expression to filter the packages by.<br /><br />**Note:** The logical operators in the expression ('AND', 'OR') should be provided in capital letters (The same as in the `SmartConsole Object Explorer`). The search involves both a IP search and a textual search in name, comment, tags etc. |
  | Limit                     | The maximum number of results to return in the response.<br /><br />Valid range is - `1` to `500`.                                                                                                                                                                                                           |
  | Offset                    | The pagination offset indicating the starting point for the next set of results.                                                                                                                                                                                                                             |
  | Order                     | A JSON list of fields and their sorting order.<br />        <br />Example:<br /><pre><code>\[<br />  \{ "name": "ASC" },<br />  \{ "createdAt": "DESC" }<br />]</code></pre>                                                                                                                                 |
  | Return All Pages          | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                                             |
  | Show Installation Targets | Select to calculate and include the `installation targets` field in the response.                                                                                                                                                                                                                            |
</div>

## Example Output

```json theme={"dark"}
{
	"from": 1,
	"to": 2,
	"total": 5,
	"packages": [
		{
			"name": "Core-Network-Package",
			"uid": "3f2a9c41-8b6e-4e91-9c8a-1b7a3e5f9d21",
			"type": "package",
			"color": "blue",
			"icon": "network",
			"domain": {
				"name": "Global-Domain",
				"uid": "b12e7c90-44a1-4e2f-9c63-71b3e92f6a10",
				"domain-type": "global domain"
			}
		},
		{
			"name": "Web-Applications-Package",
			"uid": "9d5f41a8-2c6e-48b1-91e2-7a4c3b6f0e88",
			"type": "package",
			"color": "dark green",
			"icon": "web",
			"domain": {
				"name": "Production-Domain",
				"uid": "6a7c2d91-8f45-4e7a-b1c2-0f9a6d4e3b55",
				"domain-type": "domain"
			}
		}
	]
}
```

## Workflow Library Example

[Show Packages with Check Point Management and Send Results Via Email](https://library.blinkops.com/workflows/show-packages-with-check-point-management-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/show-packages-with-check-point-management-and-send-results-via-email/canvas" />
</div>
