Skip to content
Bakhtarian edited this page May 14, 2026 · 1 revision

Forum

A forum is a Whop experience that hosts discussion threads — the container in which Forum Post entries live. The SDK supports listing, reading, and updating forums.

SDK access

$client->forums // Matchable\Whop\Resource\ForumResource

Endpoints

list(array $query = []): array

HTTP GET forums
Does Lists forums.
Parameters $query — optional filters / pagination.
Returns array

get(string $id): array

HTTP GET forums/{id}
Does Retrieves a single forum by ID.
Parameters $id — the forum ID.
Returns array

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

HTTP PATCH forums/{id}
Does Updates a forum's attributes.
Parameters $id — the forum ID; $data — fields to change.
Returns array

Note: this resource exposes no create or delete method. To publish content into a forum, see Forum Post.

Example

$forum = $client->forums->get('forum_...');

$client->forums->update('forum_...', [
    'name' => 'Community Discussion',
]);

Reference

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

Clone this wiki locally