Script tag

Configure

To get org, id, and key for each instance, visit API settings in the Seeka app. Make sure the correct organisation and brand is selected before copying the values.

<script>
    // 1. Copy the install script tag from https://seeka.app/setup/sources/script-tag-install
    // 2. Replace the single-instance SeekaInstall(...) call with this multi-instance version:

    SeekaInstall(
        {
            "instances": [
                // Brand 1
                {
                    "org": "", // Organisation ID
                    "id": "", // Instance ID
                    "key": "" // Public key
                },
                // Brand 2
                {
                    "org": "", // Organisation ID
                    "id": "", // Instance ID
                    "key": "" // Public key
                }
                // More instances can be added (up to 20)
            ]
        }
    );
</script>

Usage

See multi-instance usage for how to interact with the SDK after configuration.