Recommended setup
The customer system owns the CRM page. Draxo runs in an iframe panel and receives deal context through the embed script.
Use this center to preview the customer CRM experience, copy the embed snippet, and understand how multi-source deal context flows into Draxo.
The customer system owns the CRM page. Draxo runs in an iframe panel and receives deal context through the embed script.
Developers add one container, load embed.js, then pass deal fields and sources.
<div id="draxo-embed"></div>
<script src="https://www.usedraxo.com/embed.js"></script>
<script>
window.DraxoEmbed.init({
container: "#draxo-embed",
embedKey: "customer_public_key",
deal,
sources,
onResult: function (result) {
console.log("Draxo diagnosis", result);
}
});
</script>