Website Disclosure & Consent
Every website using Intenxio must inform visitors that anonymous intent scoring is in use — similar to how cookie banners disclose tracking. Intenxio provides a built-in disclosure banner via the SDK.
Why disclosure is required
Intenxio scores what a visitor is interested in (services, content, products) using anonymous browser storage. Visitors have the right to know this is happening and to decline. The SDK handles this automatically when requireConsent is enabled (default).
Quick setup
<script src="https://intenxio.staykio.com/sdk.min.js"></script>
<script>
Intenxio.init({
websiteId: 'YOUR_WEBSITE_ID',
publicKey: 'YOUR_PUBLIC_KEY',
disclosure: {
enabled: true,
privacyUrl: 'https://yoursite.com/privacy'
}
});
</script>
The banner appears at the bottom of the page until the visitor accepts or declines. No signals are sent until consent is given.
Configuration options
| Option | Default | Description |
|---|---|---|
requireConsent | true | Block signals until visitor accepts |
disclosure.enabled | true | Show the disclosure banner |
disclosure.privacyUrl | — | Link to your privacy policy (required) |
disclosure.text | Default copy | Custom disclosure message |
disclosure.learnMoreUrl | Intenxio docs | Link for "Learn more" |
Privacy policy paragraph
Add this to your website's privacy policy:
Intent Scoring (Intenxio)
We use Intenxio, a global intention scoring service, to understand what
content and services you are interested in during your visit. Intenxio
stores anonymous intent scores in your browser for up to 7 days. It does
not collect your name, email address, or any personal identifiers. You
can decline intent scoring when prompted or clear your browser storage
at any time.
SDK consent methods
Intenxio.hasConsent() // true if visitor accepted
Intenxio.getConsentStatus() // 'accepted', 'declined', or null
Intenxio.acceptConsent() // programmatic accept
Intenxio.declineConsent() // programmatic decline
Intenxio.revokeConsent() // reset and re-show banner
Intenxio.showDisclosure() // manually show banner
Use cases
Disclosure applies equally across all website types:
- E-commerce — product interest scoring
- Logistics — shipping service preferences (express, freight, last-mile)
- Insurance — coverage type interest (auto, home, health)
- Healthcare — service area interest (wellness, pharmacy, fitness)
- Property — listing type preference (rental, commercial, residential)
Regulatory notes
Intenxio does not use cookies for tracking and does not collect personal data. However, storing anonymous preferences in localStorage still requires transparency under GDPR, CCPA, and similar regulations. Always link to your privacy policy and honour decline requests.