Skip to main content
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.
External DocumentationTo learn more, visit the Slack documentation.

Parameters

ParameterDescription
Channel IDThe channel ID to retrieve members for. Can be obtained by using the Get Channels action.
CursorPaginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request’s response_metadata.

To automatically fetch all pages of the collection, use the Return All Pages parameter.
LimitThe maximum number of items to return in a single execution.
Return All PagesAutomatically fetch all resources, page by page.

Example Output

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

Workflow Library Example

List Channel Members with Slack and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop