getEligibleTriggers( )


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.

Method Declaration
Copy
function getEligibleTriggers(
  payload: GetEligibleTriggersEnvelope,
): GetEligibleTriggersResponse | Promise<GetEligibleTriggersResponse>;
Method Parameters
payloadGetEligibleTriggersEnvelope
Returns
Return Type:GetEligibleTriggersResponse | Promise<GetEligibleTriggersResponse>
Example of an `eligibleTriggers` return value
JavaScript
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", }, ], }; }, });
Did this help?