MRZ
Accura Scan’s MRZ scans and extracts the MRZ data from any government Id globally.
The method use to Start MRZ scanning is
accura.startMRZ(accuraConfigs, mrzType, function (result), function (error));
Parameters
accuraConfs: {'enableLogs':false}, mrzType: String(e.g. other_mrz, passport_mrz, id_mrz, visa_mrz)
Response:
Success: JSON String Response
Error: String
Example function:
function startMRZ() {
var accuraConfigs = {};
accura.startMRZ(accuraConfigs, mrzSelected, function (result) {
//Result from the SDK
}, function (error) {
alert(error)
})
}
Last updated