Start Liveness Verification

Calling startSDK

To start the liveness verification, use the startSDK() method with the required parameters, including the user's ID and mobile token, within your app's view controller.

Parameter
Required
Description

viewController: UIViewController

Yes

The view controller from which to present the SDK

mobileToken: String

Yes

Usage token associated with your CAF account

personId: String

Yes

User's ID

Example

    sdk?.startSDK(
        viewController: self,
        mobileToken: "mobileToken",
        personId: "personId"
    )

Last updated