> ## 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 Channel Members

Retrieve the members of a channel by its ID.

**Notes**:

* For **private channels**, the connected user or bot must be a member of the channel in order to list its members.
* When using a **bot** token (either through the `Bot for Slack` or `Token` connections), members of `mpim` channels cannot be listed.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                     |
  | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Channel ID       | The channel ID to retrieve members for. Can be obtained by using the `Get Channels` action.                                                                                                                                                                     |
  | Cursor           | Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`. <br /><br />To automatically fetch all pages of the collection, use the `Return All Pages` parameter. |
  | Limit            | The maximum number of items to return in a single execution.                                                                                                                                                                                                    |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                                |
</div>

## Example Output

```json theme={"dark"}
{
	"ok": true,
	"members": [
		"U023BECGF",
		"U061F7AUR",
		"W012A3CDE"
	],
	"response_metadata": {
		"next_cursor": "e3VzZXJfaWQ6IFcxMjM0NTY3fQ=="
	}
}
```

## Workflow Library Example

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