SDK’s integration
The Axeptio ClientAPI is a RESTful JSON / HTTP API that allows you to automate the configuration and administration of Axeptio.The SDK is a small Javascript file that is loaded by your html page using
Axeptio Embed.JS SDK
Integration
<script type="text/javascript">
var el = document.createElement('script');
el.setAttribute('src', 'https://static.axept.io/sdk.js');
el.setAttribute('type', 'text/javascript');
el.setAttribute('async', true);
el.setAttribute('data-id', '5c6c5afae6b2877317a4518e');
el.setAttribute('data-cookies-version', 'Misterflyversion1FR');
if (document.body !== null) {
document.body.appendChild(el);
}
</script>Detailed integration
Last updated
Was this helpful?