Advanced Features

PEP/AML Check

Automate Political Exposed Persons and Anti-Money Laundering sanctions screening. Enable this feature in your Dashboard under Add-ons for the specific widget.

Face Liveliness

Prevent spoofing by requiring users to perform a live camera challenge. The widget automatically captures biometric data and returns a confidence score.
Use this guide to initialize the Face Liveliness SDK in your React Native application:

<IdentityKyc
configId="CONFIG-ID"
widgetKey="WIDGET-ID"
metadata={{
user_id: 'user_123',
email: '[email protected]',
metadata: {
compare_image: 'BASE64 || DIRECT-IMAGE-URL'
}
}}
onComplete={(data) => console.log('✅ Success:', data)}
onError={(error) => console.error('❌ Error:', error)}
buttonText="Verify Identity"
/>

Custom Metadata

Pass a metadata object in your SDK configuration to tie internal application data to the Prembly session. This is incredibly
useful for reconciling webhooks with internal database IDs.

metadata: {
internal_user_id: "usr_9921",
plan: "premium"
}

Sandbox & Testing

To test without incurring charges, append is_test: true inside the metadata object or configure your widget for
Sandbox mode in the dashboard.


Did this page help you?