> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List conversation members

> List the Slack user IDs belonging to a conversation.

`listConversationMembers` returns a page of member IDs for any Slack
conversation type. Pass those IDs to [Get member](/reference/integrations/slack/actions/get-member)
when you need profile details.

## Example

```ts automations/list-channel-members.automation.ts theme={null}
import { automation } from "automate.ax"
import { listConversationMembers } from "automate.ax/slack"

export default automation("List channel members", () => {
  listConversationMembers({ conversationId: "C01234567", limit: 200 })
})
```

## Inputs

| Input            | Type                                             | Required | Default         | Description                          |
| ---------------- | ------------------------------------------------ | -------- | --------------- | ------------------------------------ |
| `conversationId` | `string`                                         | Yes      | —               | Stable Slack conversation ID.        |
| `cursor`         | `string`                                         | No       | First page      | `nextCursor` from the previous page. |
| `limit`          | `number`                                         | No       | Slack default   | Requested page size from 1 to 200.   |
| `account`        | `string \| IntegrationAccountReference<"slack">` | No       | Project default | Slack workspace binding.             |

## Output

Returns `Signal<{ memberIds: string[]; responseMetadata: { nextCursor?: string } }>`.
The IDs are Slack user IDs, not email addresses or display names.
