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

# Get Network Devices

Retrieve a list of network devices with optional filtering.

<Note>
  External Documentation

  To learn more, visit the [Cisco ISE documentation](https://developer.cisco.com/docs/identity-services-engine/latest/ers-open-api-ers-open-api/).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter      | Description                                                                                                                                                                                                                                                                                                                                                                                                                        |
  | -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Filter         | Filter results by specifying criteria across the following fields:<br />\* `ipaddress`<br />\* `name`<br />\* `description`<br />\* `location`<br />\* `type`<br /><br />*For Example:* `name.EQ.Example` or `ipaddress.GT.1.1.1.1`.<br />  <br />For more information about the parameter, refer to [Cisco ISE'S documentation](https://developer.cisco.com/docs/identity-services-engine/latest/read-a-resource/#adding-filter). |
  | Page Number    | The page number to retrieve.                                                                                                                                                                                                                                                                                                                                                                                                       |
  | Page Size      | The maximum number of network devices to retrieve per page.                                                                                                                                                                                                                                                                                                                                                                        |
  | Sort By        | Sort results by ascending order in this field.                                                                                                                                                                                                                                                                                                                                                                                     |
  | Sort By        | Sort results by descending order in this field.                                                                                                                                                                                                                                                                                                                                                                                    |
  | Sort Direction | Choose to order results in ascending or descending order.                                                                                                                                                                                                                                                                                                                                                                          |
</div>

## Example Output

```json theme={"dark"}
{
	"SearchResult": {
		"total": 1,
		"resources": [
			{
				"id": "string",
				"name": "string",
				"description": "",
				"link": {
					"rel": "self",
					"href": "url",
					"type": "application/json"
				}
			}
		],
		"nextPage": {
			"rel": "next",
			"href": "url",
			"type": "application/json"
		}
	}
}
```

## Workflow Library Example

[Get Network Devices with Cisco Ise and Send Results Via Email](https://library.blinkops.com/workflows/get-network-devices-with-cisco-ise-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/get-network-devices-with-cisco-ise-and-send-results-via-email/canvas" />
</div>
