Collection - Usage Examples
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.
let param = QoreIDParam()
.clientId(clientId: key)
.customerReference(customerref)
.inputData(InputData)
.collection(productCode) // provide service product code
.build()
QoreIdSdk.shared.launch(param: param, vc: self) { [weak self] result in
}
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.
let param = QoreIDParam()
.clientId(clientId: clientid)
.customerReference(customerref)
.collection("verifind")
.build()
QoreIdSdk.shared.launch(param: param, vc: self) { [weak self] result in
}
See Verifind Permissions to include in your Manifest if you intend to use Verifind.
See the Product Codes section for more info about product codes you can use to launch QoreID SDK
Updated about 1 year ago