onCouponApplied( )


Notes:

Triggered when a coupon is applied.

Permissions
Manage Coupons
Manage Stores - all permissions
Learn more about app permissions.
Method Declaration
Copy
function onCouponApplied(handler: function): void;
Method Parameters
handlerfunction

handler(event: CouponAppliedEnvelope): void | Promise<void>

JavaScript
import { coupons } from "@wix/marketing"; coupons.onCouponApplied((event) => { // handle your event here });
Did this help?