Embed Draxo into a customer system

Use this center to preview the customer CRM experience, copy the embed snippet, and understand how multi-source deal context flows into Draxo.

Recommended setup

The customer system owns the CRM page. Draxo runs in an iframe panel and receives deal context through the embed script.

Load embed.jsSend deal + sourcesReceive diagnosis

Customer-side snippet

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>