4. Privacy Data Permissions

Configure the onboarding flow to ask for permissions to share privacy data with your dApp.

The KYB privacy permissions flow easily allows business's to consent to sharing their privacy data with your dApp in a few simple, secure steps.

You can configure the KYB onboarding application to request for privacy consent by passing requestPrivacyConsent as true to the onboarding component.

The applicant will be presented with the following screen after validating their business's email address.

Once privacy consent is granted, a callback function will be triggered to inform your dApp.

You can pass isPrivacyConsentRequired as true to prevent the application from going forward unless consent is granted.

The applicant will receive the following screen in this case, when they click "Don't Allow".

Example

<QuadrataKyb
    requirePrivacyConsent={true}
    isPrivacyConsentRequired={true}
    ...
/>

In order to use this feature, application owners must have a working implementation of the Quadrata KYB Client. A full example and integration steps can be found here: 5. Full Example

Last updated