Migration to Kraken
This page describes step-by-step how a client can migrate co to a new version.
1. Account creation
Items we need:
Name
Owner email address
Public EC512 key (signing requests or accessing API)
Webhook URL
Notification email (only if you want to get email changes)
Redirect URL
You have to request our OPS for the following credentials:
Client ID
Webhook Secret Key
2. Update link
Links are similar to the previous version:
The new link did not contain attributes but just a signed JWT token:
The link is the same for redirection or an iframe interaction.
3. Redirection back behavior
3.1. Generate an API token
When a user is redirected back to your site or KYC ends in an iframe, you will receive a one-time token. This one-time token needs to be exchanged for a user ID.
https://kraken.fractal.id/api-doc#/PublicKyc/PublicKycController_getSession
The user ID should be stored next to your user; later, you can use it to receive a KYC status or user data.
https://kraken.fractal.id/api-doc#/PublicKyc/PublicKycController_getData
The structure has changed, and if you want to get files, you should use:
https://kraken.fractal.id/api-doc#/PublicKyc/PublicKycController_getFile
4. Webhooks
Webhooks are (almost) the same; you would receive a message in your webhook endpoint like this:
To verify the authenticity of a webhook request, validate the signature using the X-Fractal-Signature header. Example implementation in JavaScript:
Last updated
Was this helpful?