Search + K

Command Palette

Search for a command to run...

Sign In

conversations_members

GET /conversations.members
Copy endpoint
https://slack.com/api

Retrieve members of a conversation.

Parameters

query Query Parameters

Name Type
token

Authentication token. Requires scope: conversations:read

string
channel

ID of the conversation to retrieve members for

string
limit

The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached.

number
cursor

Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.

string

Responses

200 application/json

Typical paginated success response

{ members: DefsUserId
type DefsUserId = string
[]
;ok: DefsOkTrue
type DefsOkTrue = true
;response_metadata: { next_cursor: string; }; }
default application/json

Typical error response when an invalid cursor is provided

{ callstack?: string;error: "channel_not_found" | "invalid_limit" | "invalid_cursor" | "fetch_members_failed" | "not_authed" | "invalid_auth" | "account_inactive" | "invalid_arg_name" | "invalid_array_arg" | "invalid_charset" | "invalid_form_data" | "invalid_post_type" | "missing_post_type" | "team_added_to_org" | "invalid_json" | "json_not_object" | "request_timeout" | "upgrade_required";ok: DefsOkFalse
type DefsOkFalse = false
; }