Embed into Your Application
Install the Appmixer SDK
<script src="https://my.YOUR_TENANT.appmixer.cloud/appmixer/appmixer.js"></script>const appmixer = new Appmixer({ baseUrl: 'https://api.YOUR_TENANT.appmixer.cloud' });Authenticate your end-users
let auth;
try {
auth = await appmixer.api.authenticateUser(username, usertoken);
appmixer.set('accessToken', auth.token);
} catch (err) {
if (err.response && err.response.status === 403) {
// Virtual user not yet created in Appmixer. Create one.
try {
auth = await appmixer.api.signupUser(username, usertoken);
appmixer.set('accessToken', auth.token);
} catch (err) {
alert('Something went wrong creating a virtual user. ' + err.message);
}
} else {
alert('Something went wrong authenticating a virtual user. '+ err.message);
}
}Embed Integration Marketplace

Embed Automation Designer


Custom Strings and Localization

Custom Theme

Demo Applications
Last updated
Was this helpful?
