| name | sumsub-integrate-dint-websdk |
| description | Add Sumsub Device Intelligence (the Fisherman module) to a web project that already verifies users with the Sumsub WebSDK. TRIGGER when the user asks to "add device intelligence", "enable device capture / fingerprinting in the WebSDK", "turn on Fisherman", "detect device fraud / multi-accounting in the verification flow", or asks how device risk labels get onto an applicant verified through the WebSDK. Covers the whole loop — enabling Capture device data on the level, the automatic in-SDK Fisherman lifecycle, the advanced self-rendered wiring, reading device signals (Devices tab, Device Check, risk labels, webhooks), sandbox testing, go-live checklist. SKIP for device intelligence on pages with NO WebSDK widget (login / signup / checkout) — use `sumsub-integrate-dint-standalone`; SKIP for the base WebSDK embed itself — use `sumsub-integrate-websdk`. |
| allowed-tools | Read, Write |
Sumsub — Device Intelligence via the WebSDK
Add Device Intelligence (DI) to a project that already embeds the Sumsub
WebSDK. DI is the fraud-detection layer that captures low-level device/browser
signals (device fingerprint, bot/automation, VPN/proxy, emulator, incognito,
reused-device) and attaches them to the applicant as device risk labels
that feed risk scoring.
The JS module that does the capture is called Fisherman (npm
@sumsub/fisherman) — same thing, different name. Inside the WebSDK you almost
never touch it directly; the SDK ships and drives it for you.
⚠️ Sandbox tokens only
Do not accept or use a production App Token / secret during integration
work. Insist on a sandbox pair from
https://cockpit.sumsub.com/checkus/devSpace/appTokens — toggle the workspace
to Sandbox first, then Create. Token + secret are revealed once at
creation; copy both before closing the dialog. Helper scripts in sibling skills
enforce this with an sbx: prefix check; the curl recipes here assume the same.
Deeper auth mechanics: sumsub-api-auth.
The lifecycle in one picture
┌───────────────────────────────┐ ← one-time, in the dashboard
│ 1. "Capture device data" on │ (verification level settings)
│ on the verification level │
└───────────────┬───────────────┘
│
┌───────────────▼───────────────┐ ← your existing sumsub-integrate-websdk
│ 2. WebSDK launches as usual │ code. NOTHING new on the frontend.
│ (same access token) │
└───────────────┬───────────────┘
│ the SDK auto-inits Fisherman with that token,
│ fingerprints the device, attaches it to the applicant
┌───────────────▼───────────────┐ ┌─────────────────────────────────┐
│ 3. Sumsub computes device │─▶│ Device risk labels on the │
│ signals + risk labels │ │ applicant; feed risk scoring │
└───────────────┬───────────────┘ └─────────────────────────────────┘
│
┌───────────────▼───────────────┐ ← server reads the applicant /
│ 4. You read the verdict + │ receives the webhook (same as
│ device signals server-side │ the base WebSDK flow)
└────────────────────────────────┘
The headline: for a standard WebSDK integration, DI is a dashboard toggle, not
new code. Stages 3–4 below are the advanced (self-rendered) path and the
result-reading details.
Stage 1 — Enable device capture on the level
DI rides along automatically in WebSDK 2.0 and the Mobile SDKs only when
"Capture device data" is enabled in the verification level settings. In the
dashboard: open the level → Device intelligence section → tick Capture
device data. If you don't see the setting, DI isn't provisioned for the workspace —
contact Sumsub to enable the product before continuing.
Optional BYOK: you can supply your own Fingerprint Pro credentials (public +
secret API key) under DevSpace → Integrations → Fingerprint so devices are
captured under your Fingerprint account. Without BYOK, Sumsub's own credentials
are used — both work; BYOK only matters if you already run Fingerprint Pro.
That's the entire required setup. Re-launch your existing WebSDK flow and devices
start getting captured.
Stage 2 — The automatic in-SDK lifecycle (no code)
With "Capture device data" on, the WebSDK, using the same access token your
sumsub-integrate-websdk token endpoint
already mints:
- Initializes Fisherman against the SDK's API host once the SDK config loads.
- Fingerprints the device on each step transition, binding it to the current
(applicantId, attemptId).
- Re-initializes on a level transition (the
attemptId changes), so a
multi-level flow gets a fresh device binding per level.
- Forwards the resulting device id to the backend on subsequent calls so the
capture is tied to the applicant.
You do not write, configure, or call any of this. It is listed so you can
recognise it in logs / network traffic (/di/info, an /bhv/... events POST,
an X-External-Device-Fingerprint request header).
Stage 3 — Advanced: self-rendered / headless wiring
Only relevant if you do not use the prebuilt snsWebSdk widget and drive
the verification API yourself. Then you own the Fisherman lifecycle. Mirror the
SDK's own behaviour — see examples/fisherman-self-render.ts:
import { init, destroy, type Fisherman } from '@sumsub/fisherman'
let fisherman: Fisherman | undefined
fisherman = await init({ token, baseUrl, onError: () => { destroy() } })
if (fisherman?.isDeviceIntelligenceEnabled) {
const { visitorId } = await fisherman.fingerprint({
linkedId: applicantId,
deviceBindingId: `${applicantId}-${attemptId}`,
})
}
Key rules the SDK follows and you must too:
- Two-layer gate. The SDK gates
init() itself on the config-level flag
config.deviceIntelligenceSettings.enabled — when DI is off for the level it
never calls init(). Then it gates each fingerprint() on the runtime flag
fisherman.isDeviceIntelligenceEnabled (from /di/info). Mirror both: skip
init when the config flag is false, never fingerprint unless the runtime flag
is true (it errors / wastes a call).
- On a level transition (
attemptId changes) destroy() then init() again
before the next fingerprint(), so devices bind to the right level.
- Forward the returned
visitorId as the X-External-Device-Fingerprint
header on the verification API calls that follow the capture. (This header is
device/stats enrichment — the actual applicant binding is the per-attempt
deviceBindingId (applicantId-attemptId) above, not the header.)
Stage 4 — Read the device signals
DI does not change how you read the verdict — it enriches it. Keep the
server-as-source-of-truth rule from the base WebSDK skill (webhook +
authenticated applicant GET), and read the device data alongside it.
In the dashboard:
- Applicant profile → Devices tab — every device seen, with risk labels.
- Completed verification → Device Check block.
- Transactions → a device row → View device details.
Via API / webhooks: the device risk labels land on the applicant, not in
the webhook payload. The applicantReviewed webhook carries the verdict only
(reviewResult) — treat it as the trigger to read the applicant server-side
(same App-Token + HMAC auth as the base skill), here keyed by your externalUserId:
USER_ID="<your-externalUserId>"
PATH_Q="/resources/applicants/-;externalUserId=${USER_ID}/one"
TS=$(date -u +%s)
SIG=$(printf '%s%s%s' "$TS" "GET" "$PATH_Q" \
| openssl dgst -sha256 -hmac "$SUMSUB_SECRET_KEY" -hex | awk '{print $NF}')
curl -sS --fail-with-body -H "X-App-Token: $SUMSUB_APP_TOKEN" -H "X-App-Access-Ts: $TS" \
-H "X-App-Access-Sig: $SIG" -H "X-Agent-Source: sumsub-skills" \
-H "X-Agent-Source-Ver: 1.2.0" \
"https://api.sumsub.com${PATH_Q}"
Runnable version of that GET: examples/read-device-results.sh.
The full device-signal / risk-label catalog and where each surfaces:
references/device-signals.md.
Sandbox testing
- Sandbox has no real device signals — Fingerprint is simulated. Devices are
still captured and risk labels still appear, but values are synthetic.
- For deterministic test outcomes the module accepts a
simulationConfig
(FpSimulationConf) on init to force specific signals; only relevant on the
self-rendered path. The prebuilt WebSDK handles sandbox simulation itself.
- Run a full sandbox WebSDK verification (see the base skill's test docs) and
confirm a device appears under the applicant's Devices tab.
Going live checklist
See also