> ## 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 All Devices

Fetches a list of all Devices that are not DELETED for your org. Responses are paginated with maximum size of 200.

<Note>
  External Documentation

  To learn more, visit the [Okta documentation](https://developer.okta.com/docs/api/openapi/okta-management/management/tag/Device/#tag/Device/operation/listDevices).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                          |
  | ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Add User Details | Lists associated users for the device in \_embedded element.<br />\* `user` - Lists full details for associated users<br />\* `userSummary` - Lists summaries for associated users.                                  |
  | Cursor           | Specifies the pagination cursor for the next page of devices.                                                                                                                                                        |
  | Limit            | Specifies the number of results returned (maximum & default 200).                                                                                                                                                    |
  | Query            | Searches for devices with a supported filtering expression for most properties ([https://developer.okta.com/docs/reference/core-okta-api/#filter](https://developer.okta.com/docs/reference/core-okta-api/#filter)). |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                     |
</div>

## Example Output

```json theme={"dark"}
[
	{
		"id": "<string>",
		"status": "<string>",
		"created": "2016-02-03T19:52:56.518Z",
		"lastUpdated": "2016-12-09T00:45:52.221Z",
		"profile": {
			"displayName": "<string>",
			"platform": "<string>",
			"manufacturer": "<string>",
			"model": "<string>",
			"osVersion": "<string>",
			"registered": true,
			"secureHardwarePresent": true,
			"authenticatorAppKey": "<string>"
		},
		"resourceId": "<string>",
		"resourceDisplayName": {
			"value": "<string>",
			"sensitive": false
		},
		"resourceAlternateId": null,
		"resourceType": "<string>",
		"_links": {
			"suspend": {
				"href": "<string>",
				"hints": {
					"allow": [
						"<string>"
					]
				}
			},
			"self": {
				"href": "<string>",
				"hints": {
					"allow": [
						"<string>",
						"<string>"
					]
				}
			},
			"users": {
				"href": "<string>",
				"hints": {
					"allow": [
						"<string>"
					]
				}
			},
			"deactivate": {
				"href": "<string>",
				"hints": {
					"allow": [
						"<string>"
					]
				}
			}
		}
	}
]
```

## Workflow Library Example

[List All Devices with Okta and Send Results Via Email](https://library.blinkops.com/workflows/list-all-devices-with-okta-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-all-devices-with-okta-and-send-results-via-email/canvas" />
</div>
