Segment cross domain tracking
Track responders in Segment across domains
Last updated
Was this helpful?
Was this helpful?
<EmbedFlow
clientLabel="client"
flowLabel="onboarding"
queryParams={[['responder_id', '<value>']]}
embedConfig={{
origin: "https://flow.example.com", // if you use custom domains
}}
/>const embed = FormsortWebEmbed(rootEl, {
origin: "https://flow.example.com", // if you use custom domains
});
embed.loadFlow(
'client', // client label
'onboarding', // flow label
'main', // variant label - optional
[['responder_id', '<value>']] // query params
)