Collection - Usage Examples

VeriFind address verification in Collection mode

Optionally provide details about the applicant and address data. If not provided, the user will be prompted to enter the values in a form.

val qoreIDParams = QoreIDParams()
          .clientId(clientId)
        .inputData(InputData)
          .collection("verifind")

qoreIDButton
    .params(qoreIDParams)
    .registerForResult(activityResultLauncher)
QoreIDParams qoreIDParams = new QoreIDParams.Builder()
             .clientId(clientId)
             .inputData(
                 applicantData, 
                 addressData
             )
             .forService("verifind")

qoreIdButton
  .params(qoreIDParams)
  .registerForResult(activityResultLauncher)

Launch a QoreID service verification in Collection mode

Optionally provide details about the identity data and applicant data. If not provided, the user will be prompted to enter the values in a form.

val qoreIDParams = QoreIDParams()
        .clientId(clientId)
        .inputData(InputData)
        .collection(productCode) // provide service product code

qoreIdButton
    .params(qoreIDParams) 
    .registerForResult(activityResultLauncher)

πŸ”…

See the Product Codes section for more info about product codes you can use to launch QoreID SDK