Skip to content

ForumPost

Bakhtarian edited this page May 14, 2026 · 1 revision

Forum Post

A forum post is an entry published in a Whop forum experience — a thread or message that members can read and engage with. The SDK supports creating, listing, reading, and updating forum posts.

SDK access

$client->forumPosts // Matchable\Whop\Resource\ForumPostResource

Endpoints

create(array $data): array

HTTP POST forum-posts
Does Creates a new forum post.
Parameters $data — post attributes (e.g. forum/experience ID, title, content).
Returns array

list(array $query = []): array

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

get(string $id): array

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

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

HTTP PATCH forum-posts/{id}
Does Updates a forum post.
Parameters $id — the forum post ID; $data — fields to change.
Returns array

Note: this resource exposes no delete method — forum posts are created, listed, read, and updated only. For the forum container itself, see Forum.

Example

$post = $client->forumPosts->create([
    'experience_id' => 'exp_...',
    'title' => 'Welcome to the forum',
    'content' => 'Introduce yourself here!',
]);

Reference

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

Clone this wiki locally