Triggered when an order reaches its startDate
. Applies to both purchased and free orders.
function onOrderStarted(handler: function): void;
handler(event: OrderStartedEnvelope): void | Promise<void>
import { orders } from "@wix/pricing-plans";
orders.onOrderStarted((event) => {
// handle your event here
});