Configuration
Adjust the activation model, review what counts as progress towards first envelope sent, and keep the scoring rules legible for operators.
Workspace model
These rules define how the console interprets the first-envelope journey.
Current defaults
Activation event
first_envelope_sent
Onboarding event count
5
Help signal count
4
Integration setup
Start with the snippet, add a few explicit events, then verify live traffic.
Step 1 - Template
e-signature
Templates, recipients, identity checks, and first-envelope send flow.
Step 2 - Browser snippet
<script>
(function (w, d, s, u, n) {
w[n] = w[n] || function () {
(w[n].q = w[n].q || []).push(arguments);
};
var script = d.createElement(s);
script.async = true;
script.src = u;
d.head.appendChild(script);
})(window, document, "script", "https://YOUR_INTENT_INTELLIGENCE_HOST/api/sdk", "ii");
ii("init", {
workspaceKey: "demo-plg",
apiKey: "ii_demo_plg_123456",
capturePageViews: true,
onboardingPathPatterns: ["/welcome","/onboarding","/send","/templates"]
});
</script>Step 3 - Explicit events
Add 3 - 5 named business events to the current onboarding flow.
await fetch("https://YOUR_INTENT_INTELLIGENCE_HOST/api/events", {
method: "POST",
headers: {
"content-type": "application/json"
},
body: JSON.stringify({
api_key: "ii_demo_plg_123456",
workspace_key: "demo-plg",
events: [
{
user_id: "usr_123",
account_id: "acct_123",
anonymous_id: "anon_123",
event_id: "evt_signup_completed_123",
timestamp: new Date().toISOString(),
event_name: "signup_completed",
page_path: "/onboarding",
source: "server_sdk",
context: {
environment: "production"
},
traits: {
role: "Operations lead"
},
metadata: {}
}
]
})
});Step 4 - Recommended events
page_viewed onboarding_screen_viewed signup_completed template_created recipient_added first_envelope_sent
Integration health
Install status
ready
Last event seen
15 Mar 2026, 08:28
Events in last 24 hours
0
Activation seen
Yes
Sources seen
- No live sources yet.
Onboarding steps seen
- No onboarding steps seen in the last 24 hours.
Missing recommended events
- page_viewed
- onboarding_screen_viewed
- signup_completed
- template_created
- recipient_added
- first_envelope_sent
What to configure
Keep the model explicit and easy to explain to operators.
Activation milestone
Use the event that best represents first real value, such as the first envelope being sent.
Onboarding events
Include the steps that show genuine progress, such as template creation, recipient entry, or review.
Help signals
Add support or failure events that indicate visible friction, such as help views or identity-check errors.
Key feature events
Capture actions that demonstrate product understanding before activation, such as bulk send preview or template use.