14.1 Credit Card Chargeback

When a credit card chargeback occurs, information related to the chargeback like the product that was originally purchased and the user of the purchase will be sent in a notification to the webhook endpoint.

{
  tenantId: string;
  type: 'credit-card-chargeback';
  data: {
    product: {
      id: string;
      game: string;
      name: string;
      quantity: number;
    };
    chargebackId: string;
    paymentId: string;
    userId: string;
    amount: string;
  };
}