Skip to content

DisputeAlert

Bakhtarian edited this page May 14, 2026 · 1 revision

Dispute Alert

A dispute alert is an early-warning notification that a cardholder may be about to file a chargeback on a payment, giving the seller a chance to act before it becomes a formal dispute. This resource is read-only.

SDK access

$client->disputeAlerts // Matchable\Whop\Resource\DisputeAlertResource

Endpoints

list(array $query = []): array

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

get(string $id): array

HTTP GET dispute-alerts/{id}
Does Retrieves a single dispute alert by ID.
Parameters $id — the dispute alert ID.
Returns array

Note: this resource is read-only. To act on a chargeback that has been formally filed, see Dispute.

Example

$alerts = $client->disputeAlerts->list();

Reference

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

Clone this wiki locally