Skip to content

Notification

Bakhtarian edited this page May 14, 2026 · 1 revision

Notification

A notification is a message pushed to Whop users — an in-app or push alert sent to members of a company or experience. The SDK supports creating (sending) notifications.

SDK access

$client->notifications // Matchable\Whop\Resource\NotificationResource

Endpoints

create(array $data): array

HTTP POST notifications
Does Creates and sends a notification.
Parameters $data — notification attributes (e.g. title, body, target audience / experience ID).
Returns array

Note: this resource is write-only — it exposes only create. Notifications cannot be listed, read, or updated through the API.

Example

$client->notifications->create([
    'experience_id' => 'exp_...',
    'title' => 'New content available',
    'body' => 'Check out this week\'s drop.',
]);

Reference

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

Clone this wiki locally