---
title: "Update Channel"
method: PUT
path: "/api/realtime/channels/{id}"
tags: ["Channels"]
---

# Update Channel

`PUT /api/realtime/channels/{id}`

Update an existing channel's configuration

## Path parameters

- `id` string, uuid, required

## Request body

- UpdateChannelRequest
  - `pattern` string — Updated channel pattern
  - `description` string — Updated description
  - `webhookUrls` string[] — Updated webhook URLs
  - `enabled` boolean — Updated enabled status

## Response `200`

Channel updated successfully

- Channel
  - `id` string, uuid, required — Unique identifier for the channel
  - `pattern` string, required — Channel pattern for subscription matching. Uses SQL LIKE wildcards, for example "order:%".
  - `description` string, nullable — Human-readable description of the channel
  - `webhookUrls` string[], nullable — URLs to receive webhook notifications for messages on this channel
  - `enabled` boolean, required — Whether the channel is currently active
  - `createdAt` string, date-time, required — Timestamp when the channel was created
  - `updatedAt` string, date-time, required — Timestamp when the channel was last updated

## Other responses

- `400` — Invalid input
- `404` — Channel not found

---

[API](https://skmtc.net/insforge/apis/insforge-authentication-api.md) · [All operations](https://skmtc.net/insforge/apis/insforge-authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/insforge/insforge-authentication-api/revisions/a935bb49f932/schema)
