get_channel_info
Retrieve detailed information about a specific Slack channel using its channel ID to access channel properties, members, and settings.
Instructions
Get detailed information about a specific channel
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| channel | Yes | Channel ID (e.g., C1234567890) | 
Input Schema (JSON Schema)
{
  "properties": {
    "channel": {
      "description": "Channel ID (e.g., C1234567890)",
      "type": "string"
    }
  },
  "required": [
    "channel"
  ],
  "type": "object"
}