Skip to content

SupportChannel

Bakhtarian edited this page May 14, 2026 · 1 revision

Support Channel

A support channel is a dedicated communication channel between a company and its customers on Whop — used to handle support requests and customer conversations.

SDK access

$client->supportChannels // Matchable\Whop\Resource\SupportChannelResource

Endpoints

create(array $data): array

HTTP POST support-channels
Does Creates a new support channel.
Parameters $data — support channel attributes (e.g. name, associated experience or company, participants).
Returns array

list(array $query = []): array

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

get(string $id): array

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

Example

$channel = $client->supportChannels->create([
    'name' => 'Billing questions',
]);

$channel = $client->supportChannels->get($channel['id']);

Reference

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

Clone this wiki locally