Type Alias: GetCartForPreview()
GetCartForPreview = (
cartId
) =>Promise
<CartForEmail
>
Function
Retrieves comprehensive cart data formatted for display or email sharing.
This method fetches complete cart information including all items, pricing details, customer contact information, and submission data. The returned data is structured for presentation in review screens, email previews, or order confirmation displays.
The cart preview includes not only the basic product information but also calculates totals, applies any price modifiers or discounts, and formats custom fields for easy reading.
Parameters
cartId
string
The unique identifier for the cart to retrieve
Returns
A promise that resolves to a comprehensive cart object formatted for display
Example
// Retrieve a cart for preview before submission
const cartPreview = await window.mimeeqApp.actions.getCartForPreview('cart_123456');
// Display cart summary information
document.getElementById('cart-total').textContent =
`${cartPreview.totalValue} ${cartPreview.currency}`;
// Display all items in the cart
const itemsList = document.getElementById('cart-items');
cartPreview.cartItems.forEach(item => {
itemsList.innerHTML += `<li>${item.quantity}x ${item.productName}</li>`;
});
Throws
Will throw an error if the cart cannot be found or if access is denied