Login Settings

This will get in detail of how the login methods are enabled/disabled inside the projectFlow.

Login Settings refers to all the validations that will be performed in this flow. For these implementations to be created correctly, the type of the project flow must be set to login. The following explains each of these elements and what they refer to in the configuration:

{
    "loginSettings": {
        "searchMode": "FAST",
        "email": true,
        "emailGateway": "mailgun",
        "phone": false,
        "phoneGateway": "whatsapp",
        "faceLiveness": true,
        "livenessMinScore": 0.9,
        "searchMinScore": 0.95,
        "showFaceLivenessRecommendation": false
    }
}
  • phone: This is a Boolean that determines whether a phone is required in the flow or not.

  • phoneGateway: Determines the provider for phone validation, for sending an OTP (One Time Password) for its validation. Valid parameters for this case:

    ["sms", "whatsapp", "both", "none"]
  • email: This is a Boolean that determines whether an email is required in the flow or not.

  • emailGateway: Determines the provider for email validation, for sending an OTP (One Time Password) for its validation. Currently, Valid parameters for this case:

    ["mailgun", "none"]
  • faceLiveness: This is a Boolean that determines whether a liveness detection process will be performed in the flow or not.

  • livenessMinScore: Determines the minimum score that the liveness detection process must surpass to be successful. This value ranges between 0 and 1; Verifik recommends a value higher than 0.60 for better results.

  • searchMode: Determines the mode for searching facial matches in the database of your project. Valid parameters for this case:

    ["FAST", "ACCURATE"]
  • searchMinScore: Determines the minimum match threshold for a match to be considered between a submitted face and one stored in the database.

  • showFaceLivenessRecommendation: This enables the UI in the no-code solution to include the option to add new faces to the Biometric Access.

Last updated