conversations_members
GET
/conversations.members https://slack.com/api
Retrieve members of a conversation.
Parameters
query Query Parameters
| Name | Type |
|---|---|
token Authentication token. Requires scope: | 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 | string |
Responses
200 application/json
Typical paginated success response
{ members: DefsUserId [];ok: DefsOkTrue ;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 ; }