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

Retrieve a list of objects from the Check Point Management server.

<Note>
  External Documentation

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

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                                                                       |
  | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Filter           | The search expression to filter objects. <br />The provided text should be exactly the same as it would be given in SmartConsole. <br />The logical operators in the expression ('AND', 'OR') should be provided in capital letters. <br />By default, the search involves both a textual search and a IP search. |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                                                  |
  | Type             | The type of object to filter by.                                                                                                                                                                                                                                                                                  |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                        |
  | --------- | -------------------------------------------------------------------------------------------------- |
  | 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.                   |
</div>

## Example Output

```json theme={"dark"}
{
	"from": 1,
	"to": 1,
	"total": 1,
	"objects": [
		{
			"uid": "1d60975f-0e87-46a3-9849-048a5fe5af43",
			"name": "example-object",
			"type": "host",
			"domain": {
				"uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
				"name": "SMC User",
				"domain-type": "domain"
			},
			"ipv4-address": "1.2.2.20",
			"icon": "Objects/host",
			"color": "black"
		}
	]
}
```

## Workflow Library Example

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