v4.9.0
NEW
Identity Verification service
When configuring a session, one can now specify the brand identifier for the IDV client, via the SdkConfigBuilder
new method withBrandId(string)
.
Example
const {
SdkConfigBuilder,
} = require('yoti');
// Using the SessionSpecificationBuilder
const sdkConfig = new SdkConfigBuilder()
.withAllowsCameraAndUpload()
// .... more options
.withBrandId('some-brand-identifier') // NEW
.build();