Workflow Integration
This page explains how to integrate a SkyStudio Workflow into your own systems using an iframe or script.
Prerequisite
The workflow must be published before it can run after being integrated.
How to Integrate a Workflow
- After the workflow is published, go to the Script Configuration section in the upper-right corner.
- Configure the workflow’s appearance and behavior settings on this screen.
- For an iframe:
- Select either Bubble iframe or Container iframe.
- Copy the generated iframe code. You can test it in a browser or integrate it into your own systems.
- For a script:
- Integrate the script code provided by SkyStudio into your system.
- Run it using either the Bubble or Container option.
Example Iframes
These codes are examples and cannot be executed as provided. You can find your custom iframe codes in SkyStudio.
Bubble
<iframe
src="https://skystudio.skymod.tech/workflow-integration-iframe.html?key=****&variant=bubble&title=****"
width="100%"
height="500"
frameborder="0">
</iframe>
Container
<iframe
src="https://skystudio.skymod.tech/workflow-integration-iframe.html?key=****&variant=container&title=****"
width="100%"
height="500"
frameborder="0">
</iframe>
Example Scripts
These codes are examples and cannot be executed as provided. You can find your custom script codes in SkyStudio.
Bubble
<script
src="https://skystudio.skymod.tech/assets/scripts/workflow-integration.js"
data-workflow-key="*******"
data-variant="bubble"
data-title="****">
</script>
Container
<script
src="https://skystudio.skymod.tech/assets/scripts/workflow-integration.js"
data-workflow-key="******"
data-variant="container"
data-title="****">
</script>
Execution Checklist
- Has the workflow been published?
- Is
data-workflow-keycorrect? - Does
data-titlecontain the correct workflow name? - Is the variant correct:
bubbleorcontainer?