---
title: "List dm members"
method: GET
path: "/dm_members"
tags: ["Dm members"]
---

# List dm members

`GET /dm_members`

Returns a paginated list of members in a specific DM channel, sorted by the date they were added.

Required permissions (one of):
 - `dms:read`
 - `support_chat:read`

## Query parameters

- `after` string — Returns the elements in the list that come after the specified cursor.
- `before` string — Returns the elements in the list that come before the specified cursor.
- `first` integer — Returns the first _n_ elements from the list.
- `last` integer — Returns the last _n_ elements from the list.
- `channel_id` string, required — The unique identifier of the DM channel to list members for.

## Response `200`

A successful response

- object — The connection type for DmsFeedMember.
  - `data` DmMemberListItem[], required — A list of nodes.
    - `channel_id` string, required — The unique identifier of the messaging channel this membership belongs to.
    - `id` string, required — The unique identifier for the entity
    - `last_viewed_at` string, nullable, required — The timestamp when this member last viewed the channel, as a Unix timestamp in milliseconds. Null if the member has never viewed the channel.
    - `status` 'requested' | 'accepted' | 'hidden' | 'closed' | 'archived', required — The statuses of a DMs feed member
    - `user_id` string, required — The unique identifier of the user who holds this channel membership.
  - `page_info` PageInfo, required — Information about pagination in a connection.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?
    - `has_previous_page` boolean, required — When paginating backwards, are there more items?
    - `start_cursor` string, nullable, required — When paginating backwards, the cursor to continue.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

## Changes

- **2026-08-27** `16c82685be35` — 2 info
  - the security scope `dms:read` was added to the endpoint's security scheme `bearerAuth`
  - the security scope `support_chat:read` was removed from the endpoint's security scheme `bearerAuth`
- **2026-08-26** `86d0a97abfe5` — 2 info
  - the security scope `dms:read` was added to the endpoint's security scheme `bearerAuth`
  - the security scope `support_chat:read` was removed from the endpoint's security scheme `bearerAuth`
- **2026-08-25** `621705ee8f4a` — 2 info
  - the security scope `dms:read` was added to the endpoint's security scheme `bearerAuth`
  - the security scope `support_chat:read` was removed from the endpoint's security scheme `bearerAuth`
- **2026-08-24** `e91d507bda45` — 2 info
  - the security scope `dms:read` was added to the endpoint's security scheme `bearerAuth`
  - the security scope `support_chat:read` was removed from the endpoint's security scheme `bearerAuth`
- **2026-08-24** `42ce5c13e53b` — 2 info
  - the security scope `dms:read` was added to the endpoint's security scheme `bearerAuth`
  - the security scope `support_chat:read` was removed from the endpoint's security scheme `bearerAuth`

[Full history](https://skmtc.dev/whop/apis/whop-api/changes/dm_members/get.md)

---

[API](https://skmtc.dev/whop/apis/whop-api.md) · [All operations](https://skmtc.dev/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/whop/whop-api/revisions/16c82685be35/schema)
