---
title: "Get Customer Slack Channels"
method: POST
path: "/slack/channels"
---

# Get Customer Slack Channels

`POST /slack/channels`

Get all Slack channels for a specific customer (platform admin only).

## Request body

- GetCustomerSlackChannelsRequest — Request model for getting all Slack channels for a customer.
  - `organization_id` string, required

## Response `200`

Successful Response

- TraversalDaosSlackChannelDaoSlackChannel[]
  - `slack_channel_id` string, required
  - `organization_id` string, uuid, required
  - `channel_name` string, nullable
  - `slack_team_id` string, nullable
  - `created_at` string, date-time, nullable
  - `archived_at` string, date-time, nullable
  - `is_private` boolean, nullable
  - `channel_type` 'public' | 'private' | 'group_chat' | 'personal' | 'dm' | 'external' — Normalized channel classification across platforms. The distinctions matter for routing and permissions: - ``public``: a channel anyone in the workspace/tenant can join. - ``private``: an invite-only channel with multiple members — not a 1:1. - ``group_chat``: an ad-hoc multi-person chat not backed by a channel (Slack multi-person DM / Teams group chat). - ``dm``: a 1:1 direct message between two human users. - ``personal``: the app's personal scope — the 1:1 surface between a user and the bot itself (Slack App Home / Teams personal tab), distinct from ``dm`` which is between two humans. - ``external``: a channel shared across orgs (Slack Connect / Teams shared channel).
  - `channel_topic` string, nullable
  - `channel_description` string, nullable
  - `creator_id` string, nullable
  - `num_members` integer, nullable
  - `raw` union
    - object
    - unknown[]
      - unknown
  - `last_updated_at` string, date-time, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/traversal/apis/fastapi.md) · [All operations](https://skmtc.net/traversal/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/traversal/fastapi/revisions/2134ebffd1ef/schema)
