# MRZ

### The method use to Start MRZ scanning is

<pre><code><strong>accura.startMRZ(accuraConfigs, mrzType, function (result), function (error));
</strong></code></pre>

### *Parameters*

**accuraConfs**: {'enableLogs':false}, **mrzType**: String(e.g. other\_mrz, passport\_mrz, id\_mrz, visa\_mrz)&#x20;

### ***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)
     })
}
```
