Important:
Retrieves eligible custom discount triggers based on the provided items.
This method is automatically called by Wix eCommerce to retrieve the custom discount triggers provided by your extension. This happens when actions are performed on the cart and checkout entities/pages. For example, when an item is added to the cart.
function getEligibleTriggers(
payload: GetEligibleTriggersEnvelope,
): GetEligibleTriggersResponse | Promise<GetEligibleTriggersResponse>;
import { customTriggers } from "@wix/ecom/service-plugins";
customTriggers.provideHandlers({
getEligibleTriggers: async (payload) => {
const { request, metadata } = payload;
// Use the `request` and `metadata` received from Wix and
// apply custom logic.
return {
// Return your response exactly as documented to integrate with Wix.
// Return value example:
eligibleTriggers: [
{
customTriggerId: "my-happy-hour-trigger",
identifier: "123",
},
{
customTriggerId: "my-digital-sale-trigger",
identifier: "234",
},
],
};
},
});