scope, then have the user’s browser hand it to /auth/launch with the flow’s target.
The launch mechanism is identical for every flow and is documented once in JWT User Authentication. Only the scope and target change between flows; the full list is below.
Scopes
Thescope claim is required on every partner JWT and names what the user may do. It is strictly enforced: the claim cannot be omitted, and any value other than a scope listed below is rejected with invalid_scope. Ask only for the scope a user needs.
Targets
Thetarget is the app path the launch lands the user on. It must be one of the paths listed below, optionally with a query string (for example ?org=<org_id>, used by Business KYB). Any other path, or an absolute URL, is rejected with invalid_target, so a launch can’t be redirected off-site.
Flows
A launch’s JWT needs the matching
scope, and the target must be the matching path.
The
/agreements launch is deprecated. Agreement signing (electronic signature, terms and conditions, customer agreement) now happens inside /idv automatically; new integrations don’t launch a separate /agreements step.Identity verification
scope: verification · target: /idv
This is how a customer completes KYC. Launch them into /idv with sub = the customer’s org id (the id you used when creating their personal organization). In one hosted session the customer submits a government-issued ID, completes a liveness face scan, and signs the required agreements. Etherfuse reviews the result and approves; you’re notified via the kyc_updated webhook. See KYC WebSDK for the full walkthrough.
Append &lang=es to render the entire flow in Spanish (all UI text, scan prompts, error messages, and status screens). Omit the parameter or pass lang=en for English. Example: /idv?lang=es.
Business KYB
scope: kyb · target: /kyb
Use to send a user into Know Your Business verification. Append ?org=<org_id> to the target to choose which organization to verify; without it, the app uses their current org or prompts them to create a business. See the KYB guide for the full walkthrough.