---
title: "Get Channel"
method: GET
path: "/api/v1/notifications/channels/{channel_id}"
tags: ["channels"]
---

# Get Channel

`GET /api/v1/notifications/channels/{channel_id}`

Get account-level notification channel by ID.

## Path parameters

- `channel_id` string, required

## Headers

- `unstructured-api-key` string, nullable

## Response `200`

Successful Response

- union
  - WebhookChannelResponse — Response for webhook notification channel.
    - `channel_type` 'webhook'
    - `id` string, required — Channel ID
    - `description` string, nullable — Channel description
    - `event_types` string[], required — Subscribed event types
    - `enabled` boolean, required — Channel enabled status
    - `created_at` string, date-time, required — Creation timestamp
    - `updated_at` string, date-time, required — Last update timestamp
    - `url` string, required — Webhook endpoint URL
  - EmailChannelResponse — Response for email notification channel.
    - `channel_type` 'email'
    - `id` string, required — Channel ID
    - `description` string, nullable — Channel description
    - `event_types` string[], required — Subscribed event types
    - `enabled` boolean, required — Channel enabled status
    - `created_at` string, date-time, required — Creation timestamp
    - `updated_at` string, date-time, required — Last update timestamp
    - `email_config` EmailChannelConfigResponse, required — Email config in response (no sensitive data).
      - `cc` string[], nullable — CC email addresses (if provider supports)
      - `reply_to` string, email, nullable — Reply-to email address
      - `recipient_email` string, email, required — Primary recipient email address
      - `provider` string, required — Email provider (read-only, from platform config)

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/unstructuredapp/apis/platform-api.md) · [All operations](https://skmtc.net/unstructuredapp/apis/platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unstructuredapp/platform-api/versions/41676641a27c/schema)
