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

Lists all users in a Slack team.

<Note>
  External Documentation

  To learn more, visit the [Slack documentation](https://api.slack.com/methods/users.list).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                               |
  | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Include Locale?  | Set this to `true` to receive the locale for users. Defaults to `false`.                                                                                                                  |
  | Limit            | The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the list hasn't been reached. Must be an integer no larger than 1000. |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                          |
</div>

## Example Output

```json theme={"dark"}
{
	"ok": true,
	"offset": "<string>",
	"members": [
		{
			"id": "<string>",
			"team_id": "<string>",
			"name": "<string>",
			"deleted": false,
			"color": "<string>",
			"real_name": "<string>",
			"tz": "<string>",
			"tz_label": "<string>",
			"tz_offset": 429,
			"profile": {
				"title": "<string>",
				"phone": "<string>",
				"skype": "<string>",
				"real_name": "<string>",
				"real_name_normalized": "<string>",
				"display_name": "<string>",
				"display_name_normalized": "<string>",
				"fields": {},
				"status_text": "<string>",
				"status_emoji": "<string>",
				"status_emoji_display_info": [],
				"status_expiration": 2,
				"avatar_hash": "<string>",
				"always_active": true,
				"first_name": "<string>",
				"last_name": "<string>",
				"image_24": "<string>",
				"image_32": "<string>",
				"image_48": "<string>",
				"image_72": "<string>",
				"image_192": "<string>",
				"image_512": "<string>",
				"status_text_canonical": "<string>",
				"team": "<string>"
			},
			"is_admin": false,
			"is_owner": false,
			"is_primary_owner": false,
			"is_restricted": false,
			"is_ultra_restricted": false,
			"is_bot": false,
			"is_app_user": false,
			"updated": 1,
			"is_email_confirmed": false,
			"who_can_share_contact_card": "<string>"
		},
		{
			"id": "<string>",
			"team_id": "<string>",
			"name": "<string>",
			"deleted": false,
			"color": "<string>",
			"real_name": "<string>",
			"tz": "<string>",
			"tz_label": "<string>",
			"tz_offset": 11528,
			"profile": {
				"title": "<string>",
				"phone": "<string>",
				"skype": "<string>",
				"real_name": "<string>",
				"real_name_normalized": "<string>",
				"display_name": "<string>",
				"display_name_normalized": "<string>",
				"fields": null,
				"status_text": "<string>",
				"status_emoji": "<string>",
				"status_emoji_display_info": [],
				"status_expiration": 1,
				"avatar_hash": "<string>",
				"email": "<string>",
				"first_name": "<string>",
				"last_name": "<string>",
				"image_24": "<string>",
				"image_32": "<string>",
				"image_48": "<string>",
				"image_72": "<string>",
				"image_192": "<string>",
				"image_512": "<string>",
				"status_text_canonical": "<string>",
				"team": "<string>"
			},
			"is_admin": true,
			"is_owner": true,
			"is_primary_owner": true,
			"is_restricted": false,
			"is_ultra_restricted": false,
			"is_bot": false,
			"is_app_user": false,
			"updated": 2535921684,
			"is_email_confirmed": true,
			"who_can_share_contact_card": "<string>"
		}
	],
	"cache_ts": 213327697,
	"response_metadata": {
		"next_cursor": "<string>"
	}
}
```

## Workflow Library Example

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