Skip to main content

Interface: MountUserProfilePayload

Configuration for mounting a user profile interface.

This interface extends the core embed configuration to provide a comprehensive user profile management experience. It allows authenticated users to view and update their account details, including password and personal information.

Extends

Properties

baseURL?

optional baseURL: string

Base URL for API requests.

This specifies the endpoint for all API communications from the profile interface. If not provided, the system will use the default API URL from the embed environment.

Overrides

EmbedPayloadPartial.baseURL


CDNPath?

optional CDNPath: string

Path to the CDN for static assets.

This URL is used to load images, 3D models, and other static resources required by the configurator. If not provided, the system will use the default CDN path from the embed environment.

Inherited from

EmbedPayloadPartial.CDNPath


customerId

customerId: string

Identifier for the customer account.

This specifies which customer's products and configurations will be available in the embed. Each customer has their own isolated data and settings.

Inherited from

EmbedPayloadPartial.customerId


elementId?

optional elementId: string

Deprecated

Use uid with data-mimeeq-short-code attributes instead ID of HTML element in which to mount the embed

Inherited from

EmbedPayloadPartial.elementId


locale

locale: string

Language code for the embed UI.

This sets the language used throughout the interface, including labels, button text, and error messages. Uses standard language codes like 'en', 'fr', 'de'.

Inherited from

EmbedPayloadPartial.locale


onEventDispatch?

optional onEventDispatch: EventDispatchCallback<any>

Callback function for handling events from the embed.

This function is called whenever a significant event occurs within the configurator, such as option selection, configuration changes, or user actions. It allows the hosting application to respond to these events.

Inherited from

EmbedPayloadPartial.onEventDispatch


uid

uid: string

Unique identifier for this embed instance.

This ID is used to identify a specific embed configuration and is typically the shortcode for the embed. The system will mount the embed into an HTML element with a data-mimeeq-shortcode attribute matching this value.

Each embed on a page should have a unique UID to prevent conflicts.

Inherited from

EmbedPayloadPartial.uid


withWatcher?

optional withWatcher: boolean

Enables sandbox logic for development and testing.

When true, the embed runs in a sandboxed mode with additional monitoring and development features. This should generally be false in production.

Inherited from

EmbedPayloadPartial.withWatcher