> ## 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.

# Get Channel Info

Retrieve information about a conversation.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter      | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
  | -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Channel ID     | The ID of the channel to retrieve info on. Can be obtained by using the `Get Channels` action.<br /><br />**Note**: <br />\* When using the `Slack Bot` or `Slack User` connection types, `private_channel` and `mpim` (group chat) channels **cannot** be retrieved.<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.<br />\* The `Slack Bot` connection can only retrieve information from `im` (direct messages) channels it is a member of. Public channels have no limitations. |
  | Include Locale | Set this to `true` to receive the locale for this conversation.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
</div>

## Example Output

```json theme={"dark"}
{
	"ok": true,
	"channel": {
		"id": "<string>",
		"name": "<string>",
		"is_channel": true,
		"is_group": false,
		"is_im": false,
		"is_mpim": false,
		"is_private": false,
		"created": 1876500560,
		"is_archived": false,
		"is_general": false,
		"unlinked": 2,
		"name_normalized": "<string>",
		"is_shared": false,
		"is_org_shared": false,
		"is_pending_ext_shared": false,
		"pending_shared": [],
		"context_team_id": "<string>",
		"updated": 3185901606196,
		"parent_conversation": null,
		"creator": "<string>",
		"is_ext_shared": false,
		"shared_team_ids": [
			"<string>"
		],
		"pending_connected_team_ids": [],
		"is_member": true,
		"last_read": "<string>",
		"topic": {
			"value": "<string>",
			"creator": "<string>",
			"last_set": 2
		},
		"purpose": {
			"value": "<string>",
			"creator": "<string>",
			"last_set": 1
		},
		"previous_names": []
	}
}
```

## Workflow Library Example

[Get Channel Info with Slack and Send Results Via Email](https://library.blinkops.com/workflows/get-channel-info-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/get-channel-info-with-slack-and-send-results-via-email/canvas" />
</div>
