@3dsource/metabox-front-api
    Preparing search index...

    Interface EcomConfigurator

    Represents an ecom configurator object with all necessary information about cta.

    Configuration interface for the embedded MetaBox menu. Specifies settings and behavior for the menu system.

    Configuration interface for the e-commerce/CTA system. Received via ecomConfiguratorDataUpdated event. Defines CTA button settings (label, callback URL) for the built-in or custom purchase workflow.

    Read-only data — subscribe to ecomConfiguratorDataUpdated to receive. If building custom UI, extract the CTA label and display it on your own button. The callback URL is where MetaBox POSTs the configuration data when CTA is triggered.

    interface EcomConfigurator {
        __typename: "Configurator";
        createdAt: string;
        cta?: Cta;
        id: string;
    }
    Index

    Properties

    __typename: "Configurator"

    Represents object typename for the ecom configurator.

    createdAt: string

    The created data of ecom configurator.

    cta?: Cta

    A reference to the Call To Action Information.

    id: string

    The unique ecom configurator identifier.