Skip to main content

Type Alias: PreSubmitCart()

PreSubmitCart = (cartId, submitData) => Promise<PreSubmitResponse>

Function

Saves partial contact information without fully submitting the cart.

This method allows for incrementally saving customer information during the checkout process without finalizing the order. It's useful for multi-step checkout flows, saving checkout progress, or preparing a cart for later submission.

When contact information is pre-submitted, it's associated with the cart but doesn't trigger the final submission workflow. This allows for scenarios like saving contact details while continuing to shop, validating information before final submission, or creating a draft order to be finalized later.

The method also returns updated price modifiers which may have changed based on the submitted information (e.g., discount eligibility based on company or region).

Parameters

cartId

string

The unique identifier for the cart

submitData

Partial<BasketSubmissionData>

Partial contact and submission information to save

Returns

Promise<PreSubmitResponse>

A promise that resolves to a response containing updated pricing information

Example

// Save contact information from the first checkout step
const contactInfo = {
fullName: 'Jane Smith',
email: '[email protected]',
companyName: 'Acme Corp',
language: 'en',
// Partial data - more fields will be added in subsequent steps
};

const result = await window.mimeeqApp.actions.preSubmitCart('cart_123456', contactInfo);

// Check if any price modifiers were applied based on the contact info
if (result.priceModifiers.length > 0) {
updatePricingDisplay(result.priceModifiers);
}

Throws

Will throw an error if the cart ID is missing or if pre-submission fails