Skip to content

ChatChannel

Bakhtarian edited this page May 14, 2026 · 1 revision

Chat Channel

A chat channel is a real-time messaging space attached to a Whop product or experience, where members can communicate. The SDK supports listing, reading, and updating chat channels.

SDK access

$client->chatChannels // Matchable\Whop\Resource\ChatChannelResource

Endpoints

list(array $query = []): array

HTTP GET chat-channels
Does Lists chat channels.
Parameters $query — optional filters / pagination.
Returns array

get(string $id): array

HTTP GET chat-channels/{id}
Does Retrieves a single chat channel by ID.
Parameters $id — the chat channel ID.
Returns array

update(string $id, array $data): array

HTTP PATCH chat-channels/{id}
Does Updates a chat channel.
Parameters $id — the chat channel ID; $data — fields to change.
Returns array

Note: this resource exposes no create or delete method — chat channels are listed, read, and updated only.

Example

$channels = $client->chatChannels->list(['experience_id' => 'exp_...']);

Reference

Official Whop documentation: https://docs.whop.com

Clone this wiki locally