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

List people in your organization.
One of the following permissions is required to run this action:

* `spark:people_read`
* `spark-admin:people_read`

<Note>
  External Documentation

  To learn more, visit the [Cisco Webex documentation](https://developer.webex.com/docs/api/v1/people/list-people).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter    | Description                                                                                                                                   |
  | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------- |
  | Calling Data | Include Webex Calling user details in the response. **Only supported for Admin users**.                                                       |
  | Display Name | List people whose name starts with this string. For non-admin users, either this or `Email` are required.                                     |
  | Email        | List people with this email address. For non-admin users, either this or `Display Name` are required.                                         |
  | Limit        | Limit the maximum number of people in the response. If `Calling Data` is true, the limit of the people returned is 100.                       |
  | People IDs   | List people by ID. Accepts up to 85 person IDs separated by commas.                                                                           |
  | Roles        | Comma separated list of role ids to list people by. **Lookup by roles is only supported for Admin users for the people within the same org**. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                               |
  | --------- | ------------------------------------------------------------------------------------------------------------------------- |
  | Org ID    | List people in this organization. **Only admin users of another organization (such as partners) may use this parameter**. |
</div>

## Example Output

```json theme={"dark"}
{
	"notFoundIds": null,
	"items": [
		{
			"id": "<string>",
			"emails": [
				"<string>"
			],
			"displayName": "<string>",
			"nickName": "<string>",
			"firstName": "<string>",
			"lastName": "<string>",
			"orgId": "<string>",
			"created": "2005-09-12T18:56:13.378Z",
			"lastModified": "2009-02-05T01:46:58.640Z",
			"timeZone": "<string>",
			"lastActivity": "2019-03-22T01:51:51.847Z",
			"status": "<string>",
			"type": "<string>",
			"addresses": [
				{
					"country": "<string>",
					"locality": "<string>",
					"region": "<string>",
					"streetAddress": "<string>",
					"type": "<string>",
					"postalCode": "<string>"
				}
			]
		}
	]
}
```

## Workflow Library Example

[List People with Cisco Webex and Send Results Via Email](https://library.blinkops.com/workflows/list-people-with-cisco-webex-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-people-with-cisco-webex-and-send-results-via-email/canvas" />
</div>
