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

Retrieve a list of phones.

To fetch all results, run repeatedly with the `Offset` parameter as long as the result metadata has a `next_offset` value.

If no `Number` or `Extension` parameters are provided, the list will contain all phones.

Otherwise, the list will contain either a single phone (if a match was found), or no phones.

**Note**: This action requires the `Grant resource - Read` API permission.

<Note>
  External Documentation

  To learn more, visit the [Duo documentation](https://duo.com/docs/adminapi#retrieve-phones).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter    | Description                                                           |
  | ------------ | --------------------------------------------------------------------- |
  | Phone Number | Specify a phone number (in `E.164` format) to look up a single phone. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                        |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Extension | The phone extension.                                                                                                                                                                                               |
  | Limit     | The maximum number of phones to retrieve. Defaults to `100` with a maximum of `500`.                                                                                                                               |
  | Offset    | The offset from 0 at which to start record retrieval.<br /><br />When used with `Limit`, the handler will return `limit` records starting at the n-th record, where `n` is the offset.<br /><br />Defaults to `0`. |
</div>

## Example Output

```json theme={"dark"}
{
	"metadata": {
		"total_objects": 1
	},
	"response": [
		{
			"activated": false,
			"capabilities": [
				"sms"
			],
			"encrypted": "Unknown",
			"extension": "",
			"fingerprint": "Unknown",
			"last_seen": "",
			"model": "Unknown",
			"name": "test-phone",
			"number": "+12142144286",
			"phone_id": "DPERLUZ8CIO49STDMKDP",
			"platform": "Google Android",
			"screenlock": "Unknown",
			"sms_passcodes_sent": false,
			"tampered": "Unknown",
			"type": "Mobile",
			"users": []
		}
	],
	"stat": "OK"
}
```

## Workflow Library Example

[List Phones with Duo and Send Results Via Email](https://library.blinkops.com/workflows/list-phones-with-duo-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-phones-with-duo-and-send-results-via-email/canvas" />
</div>
