Getting Started
Appmixer can be embedded into your own web products. By including Appmixer into your own product, you can give your users a whole new set of workflow automation features with a very little effort.
Embed Appmixer UI in your own web pages with the Appmixer SDK
You can use the provided Appmixer SDK to include the Appmixer UI widgets (including the Drag&Drop Designer, Flows manager, Insights, ...) any web page, right into your own web products, completely white-labeled. First, include the appmixer.js in your page:
<!DOCTYPE html>
<html>
<body>
<div id="my-am-designer" class="am-designer"></div>
<div id="my-am-flow-manager" class="am-flow-manager-container"></div>
<script src="./appmixer.js"></script>
...
</body>
</html>Once you included the Appmixer SDK, you need to create an instance of the global Appmixer class and pass the base URL of the engine:
<script>
var appmixer = new Appmixer({ baseUrl: 'https://api.appmixer.com' });
</script>Now you can create your first user:
Now we can create the first flow and open the Appmixer Designer to let your user design their first flow.
At this point, you should see the Appmixer Designer rendered inside your <div id="my-am-designer"> element.
Once you create a user in Appmixer (appmixer.api.signupUser()) and have stored their username and password in your system, you can always request a new token by calling appmixer.api.authenticateUser():
Full Example


Last updated
Was this helpful?
