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

# List User Channels

List conversations the authenticated user or bot may access.

<Note>
  External Documentation

  To learn more, visit the [Slack documentation](https://api.slack.com/methods/users.conversations).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
  | ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Channel Types     | A comma-separated list of channel types to filter the channels you want to list.<br />Available options: `public_channel`, `private_channel`, `im`, `mpim`.<br /><br />**Note**: When using the `Slack Bot` or `Slack User` connection types, `private_channel` and `mpim` channels **cannot** be listed.<br />As an alternative, you can create your own Slack app by following our [documentation](https://docs.blinkops.com/docs/integrations/slack#connecting-using-a-new-application) and adding the required scopes: `channels:read`, `groups:read`, `im:read`, `mpim:read`. Follow the guide to create a token, then connect using the `Token` connection type. |
  | Exclude Archived? | Check to exclude archived channels from the list.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
  | Limit             | The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the list hasn't been reached. Must be an integer no larger than 1000.                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
  | Return All Pages  | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
  | User ID           | Browse conversations by a specific user ID's membership. Can be obtained by using the `List Users` action.<br /><br />When using the `Slack Bot` or `Slack User` connection types, if you specify another user ID, you will only see conversations that are shared between the connected user (or bot) and that specified user.                                                                                                                                                                                                                                                                                                                                        |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
  | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Cursor    | Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`. <br />Default value fetches the first "page" of the collection. <br />To automatically fetch all pages of the collection, use the `Return All Pages` parameter. Note that you should use either the `cursor` or the `Return All Pages` parameter, but not both simultaneously.<br />See [pagination](https://api.slack.com/apis/pagination) for more detail. |
</div>

## Example Output

```json theme={"dark"}
{
	"ok": true,
	"channels": [
		{
			"id": "<string>",
			"name": "<string>",
			"is_channel": true,
			"is_group": false,
			"is_im": false,
			"is_mpim": false,
			"is_private": false,
			"created": 1478482360,
			"is_archived": false,
			"is_general": false,
			"unlinked": 1,
			"name_normalized": "<string>",
			"is_shared": false,
			"is_org_shared": false,
			"is_pending_ext_shared": false,
			"pending_shared": [],
			"context_team_id": "<string>",
			"updated": 2392766071469,
			"parent_conversation": null,
			"creator": "<string>",
			"is_ext_shared": false,
			"shared_team_ids": [
				"<string>"
			],
			"pending_connected_team_ids": [],
			"topic": {
				"value": "<string>",
				"creator": "<string>",
				"last_set": 0
			},
			"purpose": {
				"value": "<string>",
				"creator": "<string>",
				"last_set": 560042597
			},
			"properties": {
				"tabs": [
					{
						"type": "<string>",
						"label": "<string>",
						"id": "<string>"
					}
				],
				"tabz": [
					{
						"type": "<string>"
					}
				],
				"use_case": "<string>"
			},
			"previous_names": []
		},
		{
			"id": "<string>",
			"name": "<string>",
			"is_channel": true,
			"is_group": false,
			"is_im": false,
			"is_mpim": false,
			"is_private": false,
			"created": 812967980,
			"is_archived": false,
			"is_general": true,
			"unlinked": 2,
			"name_normalized": "<string>",
			"is_shared": false,
			"is_org_shared": false,
			"is_pending_ext_shared": false,
			"pending_shared": [],
			"context_team_id": "<string>",
			"updated": 1637466759825,
			"parent_conversation": null,
			"creator": "<string>",
			"is_ext_shared": false,
			"shared_team_ids": [
				"<string>"
			],
			"pending_connected_team_ids": [],
			"topic": {
				"value": "<string>",
				"creator": "<string>",
				"last_set": 1
			},
			"purpose": {
				"value": "<string>",
				"creator": "<string>",
				"last_set": 3202247175
			},
			"properties": {
				"canvas": {
					"file_id": "<string>",
					"quip_thread_id": "<string>"
				},
				"use_case": "<string>"
			},
			"previous_names": []
		}
	],
	"response_metadata": {
		"next_cursor": "<string>"
	}
}
```

## Workflow Library Example

[List User Channels with Slack and Send Results Via Email](https://library.blinkops.com/workflows/list-user-channels-with-slack-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-user-channels-with-slack-and-send-results-via-email/canvas" />
</div>
