Skip to main content

Assistant Integration

This page explains how to integrate your SkyStudio assistant into your systems.

Selecting and Customizing an Assistant

  1. Select the Assistant you want to integrate from the Integrations section.
  2. Go to the Iframe/Script option under Web Integration. You can then begin customizing your assistant.
    • Select Bubble or Container.
    • Configure the size, color, and other appearance or behavior settings.
  3. You can test the generated iframe code directly in your web browser. Integrate the iframe or script code into your systems to begin using the assistant.

Bubble Example Codes

These codes are examples and cannot be executed as provided. You can find your custom integration codes in SkyStudio.

Bubble Iframe

<iframe
src="https://skystudio.skymod.tech/integration-iframe.html?****&token=YourAuthToken&variant=bubble"
style="width: 98vw; height: 97vh; border: none;"
allowfullscreen>
</iframe>

Bubble Script

<script
src="https://skystudio.skymod.tech/assets/scripts/integration.js?variant=bubble"
data-key="****"
data-token="Your Auth Token"
type="module">
</script>

Container Example Codes

These codes are examples and cannot be executed as provided. You can find your custom integration codes in SkyStudio.

Container Iframe

<iframe
src="https://skystudio.skymod.tech/integration-iframe.html?****&token=YourAuthToken&variant=container"
style="width: 98vw; height: 97vh; border: none;"
allowfullscreen>
</iframe>

Container Script

<script
src="https://skystudio.skymod.tech/assets/scripts/integration.js?variant=container"
data-key="****"
data-token="Your Auth Token"
type="module">
</script>