Type Alias: SetPrice()
SetPrice = (
customPricing
) =>void
Sets custom pricing data for the current product configuration.
This method allows you to override the default pricing from Mimeeq with your own custom pricing logic. It accepts a price object that can include total price, currency, and delivery time information.
This is particularly useful for integrating with external pricing systems or implementing special pricing rules not available in Mimeeq's standard pricing engine.
Note: To use this method, you must enable "Use Custom Pricing" in the embed settings. Currently, modular product configurators only accept total price, not component prices.
Parameters
customPricing
Price data object containing price, currency, and optional delivery time
Returns
void
Example
// Set a custom price with delivery time
window.mimeeqApp.utils.setPrice({
price: 1299.99, // Total price
currency: 'USD', // Currency code
deliveryTime: '14-21 days', // Estimated delivery time
levels: [ // Quantity break pricing
{ quantityMin: 1, quantityMax: 9, price: 1299.99 },
{ quantityMin: 10, quantityMax: 49, price: 1199.99 },
{ quantityMin: 50, quantityMax: 999999, price: 1099.99 }
]
});
// Listen for price change events to know when to update prices
document.addEventListener('mimeeq-price-change', () => {
fetchPriceFromExternalSystem().then(priceData => {
window.mimeeqApp.utils.setPrice(priceData);
});
});